Avoid occupied Qwen235 trace ports

This commit is contained in:
2026-07-19 08:10:29 +08:00
parent b72de0fd15
commit 42e4ae3422
2 changed files with 8 additions and 4 deletions

View File

@@ -53,8 +53,8 @@ run_real() {
}
run_real fixed-pd false 9300
run_real fixed-po false 9400
run_real trace-pd true 9500
run_real trace-po true 9600
run_real trace-pd true 9800
run_real trace-po true 9900
"${VENV_ROOT}/bin/python" "${RUNNER_DIR}/extract_qwen235_v020_runtime_contract.py" \
--case-root "${CAMPAIGN_ROOT}/real/fixed-pd" \

View File

@@ -110,12 +110,16 @@ run_trial() {
"${CASE_NAME}" "${trial}" "${mnss[0]}" "${mnss[1]}" | tee -a "${OUT}/controller.log"
launch_config "${trial}" 4 "${mnss[0]}" '0,1,2,3'
launch_config "${trial}" 4 "${mnss[1]}" '4,5,6,7'
wait_for_wave && preflight_gpus && assert_no_server
wait_for_wave
preflight_gpus
assert_no_server
for mns in "${mnss[@]}"; do
printf 'WAVE_START case=%s trial=%s tp=8 mns=%s\n' \
"${CASE_NAME}" "${trial}" "${mns}" | tee -a "${OUT}/controller.log"
launch_config "${trial}" 8 "${mns}" '0,1,2,3,4,5,6,7'
wait_for_wave && preflight_gpus && assert_no_server
wait_for_wave
preflight_gpus
assert_no_server
done
}