Replace undrainable telemetry load with fresh rerun

This commit is contained in:
2026-07-14 17:52:21 +08:00
parent c0b40af24f
commit 7fd9563550
6 changed files with 150 additions and 35 deletions

View File

@@ -95,8 +95,8 @@ def main() -> None:
source_sha256="b" * 64, line_number=1, original_id="1"
)
controller = load_controller_module()
assert math.isclose(controller.remaining_projection(6, 0), 7.7)
assert math.isclose(controller.remaining_projection(6, 5), 1.45)
assert math.isclose(controller.remaining_projection(6, 0), 6.2)
assert math.isclose(controller.remaining_projection(6, 5), 1.2)
parsed = controller.parser().parse_args(
[
"--manifest",
@@ -193,7 +193,15 @@ def main() -> None:
]
)
assert coverage_gate["red_flags"] == []
print("phase-aware intervention response v2 analysis: PASS")
assert controller.warmup_selection(
{
"selections": {
"low": {"offered_req_s_per_gpu": 1.5},
"mid": {"offered_req_s_per_gpu": 2.125},
}
}
)["offered_req_s_per_gpu"] == 2.125
print("phase-aware intervention response v3 analysis: PASS")
if __name__ == "__main__":