Skip to content

Commit 4d5982a

Browse files
committed
Limit fault targets in space index
1 parent fccd045 commit 4d5982a

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

pySDC/projects/Resilience/fault_stats.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1665,7 +1665,7 @@ def main():
16651665
'num_procs': 1,
16661666
'mode': 'default',
16671667
'runs': 2000,
1668-
'reload': True,
1668+
'reload': False,
16691669
**parse_args(),
16701670
}
16711671

@@ -1689,7 +1689,7 @@ def main():
16891689
stats_path='data/stats-jusuf',
16901690
**kwargs,
16911691
)
1692-
stats_analyser.run_stats_generation(runs=kwargs['runs'], step=12)
1692+
stats_analyser.run_stats_generation(runs=kwargs['runs'], step=24)
16931693

16941694
if MPI.COMM_WORLD.rank > 0: # make sure only one rank accesses the data
16951695
return None

pySDC/projects/Resilience/strategies.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,9 @@ def get_random_params(self, problem, num_procs):
159159
rnd_params['iteration'] = 5
160160
elif problem.__name__ == 'run_Lorenz':
161161
rnd_params['iteration'] = 5
162+
elif problem.__name__ == 'run_RBC':
163+
rnd_params['problem_pos'] = [3, 16, 16]
164+
162165
return rnd_params
163166

164167
@property

0 commit comments

Comments
 (0)