Skip to content

Commit f729b61

Browse files
committed
#558: use configuration 1 for load-only test case
1 parent 906114f commit f729b61

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/acceptance/test_synthetic_blocks.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ def generate_configuration(self, alpha, beta, gamma):
2020
data_dir = os.path.join(os.path.dirname(test_dir), "data")
2121

2222
# Create YAML configuration
23+
# For load-only (beta == 0), use Configuration 1 from this comment:
24+
# https://github.com/DARMA-tasking/LB-analysis-framework/pull/581#issuecomment-2594752734
2325
config = {
2426
"from_data": {
2527
"data_stem": f"{data_dir}/synthetic-blocks/synthetic-dataset-blocks",
@@ -33,7 +35,7 @@ def generate_configuration(self, alpha, beta, gamma):
3335
"beta": beta,
3436
"gamma": gamma,
3537
"upper_bounds": {
36-
"max_memory_usage": 54.0
38+
"max_memory_usage": 36.0 if beta == 0.0 else 54.0
3739
}
3840
}
3941
},

0 commit comments

Comments
 (0)