feat: adds configurable chunk size for the initial mc level 0 SS stage cost calculation to reduce memory usage
All checks were successful
gitea-physics/deepdog/pipeline/head This commit looks good

This commit is contained in:
2023-07-27 17:39:02 -05:00
parent c4805806be
commit 9a7a3ff2c7
3 changed files with 16 additions and 2 deletions

View File

@@ -108,6 +108,7 @@ def test_basic_analysis(snapshot):
ss_default_upper_w_log_step=4,
ss_dump_last_generation=False,
write_output_to_bayesruncsv=False,
ss_initial_costs_chunk_size=1000,
)
result = square_run.go()
@@ -150,6 +151,7 @@ def test_bayesss_with_tighter_cost(snapshot):
ss_default_upper_w_log_step=4,
ss_dump_last_generation=False,
write_output_to_bayesruncsv=False,
ss_initial_costs_chunk_size=1
)
result = square_run.go()