Generalize Qwen30 fixed-shape real runner

This commit is contained in:
2026-07-17 10:17:21 +08:00
parent 6e8704d525
commit a2cf361ffe
3 changed files with 71 additions and 23 deletions

View File

@@ -25,6 +25,8 @@ def test_percentile() -> None:
assert client.percentile([4.0, 1.0, 3.0, 2.0], 0.50) == 2.0
assert client.percentile([4.0, 1.0, 3.0, 2.0], 0.95) == 4.0
assert client.percentile([], 0.95) is None
assert client.ttft_slo_ms(512) == 1064.0
assert client.ttft_slo_ms(2048) == 1256.0
def test_grid_and_trace(tmp_path: Path) -> None: