Skip to content

Commit e3965c1

Browse files
authored
Update generate_benchmark_tables.py
1 parent c8f339e commit e3965c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/generate_benchmark_tables.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def get_benchmark_tables(calc_list):
2727
# create list to store the calculator objects
2828
store_calcs = list()
2929

30-
for i in range(75):
30+
for i in range(5):
3131
np.random.seed(42)
3232
calc = Calculator(dataset=dataset, normalise=False)
3333
calc.compute()
@@ -36,5 +36,5 @@ def get_benchmark_tables(calc_list):
3636
mpi_benchmarks = get_benchmark_tables(store_calcs)
3737

3838
# save data
39-
with open("tests/CML7_benchmark_tables_no_norm.pkl", "wb") as f:
39+
with open("tests/CML7_benchmark_tables_new.pkl", "wb") as f:
4040
dill.dump(mpi_benchmarks, f)

0 commit comments

Comments
 (0)