Skip to content

Commit bf33c82

Browse files
committed
Also fix Scipy multi step execution
1 parent 886af3d commit bf33c82

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

asv_bench/benchmarks/benchmarks_particle_execution.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def setup(self):
6565
)
6666

6767
def time_run_single_timestep(self):
68-
self.pset.execute(AdvectionRK4, runtime=timedelta(seconds=1 * 30), dt=timedelta(seconds=30))
68+
self.pset.execute(AdvectionRK4, runtime=timedelta(seconds=1 * 5), dt=timedelta(seconds=5))
6969

7070
def time_run_many_timesteps(self):
71-
self.pset.execute(AdvectionRK4, runtime=timedelta(seconds=100 * 30), dt=timedelta(seconds=30))
71+
self.pset.execute(AdvectionRK4, runtime=timedelta(seconds=100 * 5), dt=timedelta(seconds=5))

0 commit comments

Comments
 (0)