diff --git a/runs/frontier-multicase-sufficiency-v0/best_effort/fixed_cohort_rank.py b/runs/frontier-multicase-sufficiency-v0/best_effort/fixed_cohort_rank.py index 90bdce5..0afc07c 100644 --- a/runs/frontier-multicase-sufficiency-v0/best_effort/fixed_cohort_rank.py +++ b/runs/frontier-multicase-sufficiency-v0/best_effort/fixed_cohort_rank.py @@ -1998,7 +1998,8 @@ def compare_trials(args: argparse.Namespace) -> Path: } decision_records = [] repeat_capacity_records = [] - for config_name in sorted(first_primary_capacity): + repeated_config_names = {name for name, _ in repeat_loads} + for config_name in sorted(set(first_primary_capacity) & repeated_config_names): old_rates = sorted( rate for name, rate in first_loads if name == config_name ) diff --git a/runs/frontier-multicase-sufficiency-v0/best_effort/jobs_fixed_cohort_targeted.toml b/runs/frontier-multicase-sufficiency-v0/best_effort/jobs_fixed_cohort_targeted.toml new file mode 100644 index 0000000..74f2c95 --- /dev/null +++ b/runs/frontier-multicase-sufficiency-v0/best_effort/jobs_fixed_cohort_targeted.toml @@ -0,0 +1,10 @@ +# Third fresh-server trial for primary-SLO boundaries disputed after refinement. +version = 1 + +[[jobs]] +name = "qwen235b-fixed-cohort-community-v3-primary-disputed-20260715" +gpus = 8 +gpu_model = "H20" +hosts = ["dash0"] +command = "cd ../../.. && /tmp/wjh-frontier-vllm0102-smoke/.venv/bin/python runs/frontier-multicase-sufficiency-v0/best_effort/fixed_cohort_rank.py run-community --manifest /home/admin/cpfs/wjh/frontier-community-qwen235-smoke-20260715/rankable-fixed-cohort-v1/community-v3-primary-disputed/run_manifest.json" +env = { PYTHONPATH = "/home/admin/cpfs/wjh/aituner/aituner-frontier-best-effort-20260715/src" }