- parse_backend.py for sglang_vs_vllm and dspark_vs_default: - compute slo_status per scenario (TTFT P95 < 3000ms, TPOT mean < 50ms) - append slo_status to results.json - add SLO column to report.md - BENCHMARK_WORKFLOW.md documents slo_status in schema and checklist
203 lines
7.4 KiB
Python
Executable File
203 lines
7.4 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
"""Parse raw sglang.bench_serving JSONL outputs for one backend.
|
|
|
|
Reads JSONL files like {dspark|default}_MMDD_concurrency_inputlen_outputlen.jsonl
|
|
and generates results.json + report.md in the given result root.
|
|
|
|
Usage:
|
|
python3 parse_backend.py <result_root> [--backend dspark|default]
|
|
"""
|
|
import argparse
|
|
import json
|
|
from pathlib import Path
|
|
|
|
|
|
def parse_jsonl(path: Path) -> dict | None:
|
|
with open(path, "r", encoding="utf-8") as f:
|
|
for line in f:
|
|
line = line.strip()
|
|
if not line:
|
|
continue
|
|
try:
|
|
return json.loads(line)
|
|
except json.JSONDecodeError:
|
|
continue
|
|
return None
|
|
|
|
|
|
def compute_metrics(data: dict) -> dict:
|
|
completed = data.get("completed", 0)
|
|
total = len(data.get("input_lens", []))
|
|
failed = total - completed if total > 0 else 0
|
|
duration_s = data.get("duration", 0.0)
|
|
|
|
return {
|
|
"success": completed,
|
|
"failed": failed,
|
|
"duration_s": duration_s,
|
|
"request_throughput": data.get("request_throughput", 0.0),
|
|
"input_token_throughput": data.get("input_throughput", 0.0),
|
|
"output_token_throughput": data.get("output_throughput", 0.0),
|
|
"total_token_throughput": data.get("total_throughput", 0.0),
|
|
"total_input_tokens": data.get("total_input_tokens", 0),
|
|
"total_output_tokens": data.get("total_output_tokens", 0),
|
|
"e2e_ms": {
|
|
"mean": data.get("mean_e2e_latency_ms", 0.0),
|
|
"p50": data.get("median_e2e_latency_ms", 0.0),
|
|
"p90": data.get("p90_e2e_latency_ms", 0.0),
|
|
"p95": data.get("p95_e2e_latency_ms", 0.0),
|
|
"p99": data.get("p99_e2e_latency_ms", 0.0),
|
|
},
|
|
"ttft_ms": {
|
|
"mean": data.get("mean_ttft_ms", 0.0),
|
|
"p50": data.get("median_ttft_ms", 0.0),
|
|
"p90": data.get("p90_ttft_ms", 0.0),
|
|
"p95": data.get("p95_ttft_ms", 0.0),
|
|
"p99": data.get("p99_ttft_ms", 0.0),
|
|
},
|
|
"tpot_ms": {
|
|
"mean": data.get("mean_tpot_ms", 0.0),
|
|
"p50": data.get("median_tpot_ms", 0.0),
|
|
"p90": data.get("p90_tpot_ms", 0.0),
|
|
"p95": data.get("p95_tpot_ms", 0.0),
|
|
"p99": data.get("p99_tpot_ms", 0.0),
|
|
},
|
|
"itl_ms": {
|
|
"mean": data.get("mean_itl_ms", 0.0),
|
|
"p50": data.get("median_itl_ms", 0.0),
|
|
"p90": data.get("p90_itl_ms", 0.0),
|
|
"p95": data.get("p95_itl_ms", 0.0),
|
|
"p99": data.get("p99_itl_ms", 0.0),
|
|
},
|
|
}
|
|
|
|
|
|
def scenario_name(concurrency: int, input_len: int, output_len: int) -> str:
|
|
return f"c{concurrency}_i{input_len}_o{output_len}"
|
|
|
|
|
|
def slo_status(metrics: dict) -> dict:
|
|
"""Check S2-tier SLO: TTFT P95 < 3s, TPOT mean < 50ms."""
|
|
ttft_ok = metrics["ttft_ms"]["p95"] < 3000.0
|
|
tpot_ok = metrics["tpot_ms"]["mean"] < 50.0
|
|
if ttft_ok and tpot_ok:
|
|
mark = "✅"
|
|
elif ttft_ok or tpot_ok:
|
|
mark = "⚠️"
|
|
else:
|
|
mark = "❌"
|
|
return {
|
|
"ttft_p95_ok": ttft_ok,
|
|
"tpot_mean_ok": tpot_ok,
|
|
"overall": mark,
|
|
}
|
|
|
|
|
|
def append_scenario(results_json: Path, scenario: dict) -> None:
|
|
with open(results_json, "r", encoding="utf-8") as f:
|
|
data = json.load(f)
|
|
data["scenarios"].append(scenario)
|
|
with open(results_json, "w", encoding="utf-8") as f:
|
|
json.dump(data, f, indent=2, ensure_ascii=False)
|
|
|
|
|
|
def generate_report(result_root: Path, backend: str, scenarios: list[dict]) -> None:
|
|
report_path = result_root / "report.md"
|
|
pretty = "vLLM+DSpark" if backend == "dspark" else "vLLM default"
|
|
with open(report_path, "w", encoding="utf-8") as f:
|
|
f.write(f"# H200 {pretty} Benchmark Report\n\n")
|
|
f.write(f"- Result root: `{result_root}`\n")
|
|
f.write(f"- Backend: {pretty} (TP=8)\n")
|
|
f.write(f"- Benchmark client: `sglang.bench_serving --backend vllm`\n\n")
|
|
|
|
f.write("## Results\n\n")
|
|
f.write("| Scenario | Concurrency | Input | Output | Duration(s) | Success | Req/s | In tok/s | Out tok/s | Total tok/s | Mean TTFT(ms) | P95 TTFT(ms) | P99 TTFT(ms) | Mean TPOT(ms) | P95 TPOT(ms) | P99 TPOT(ms) | Mean E2E(ms) | P95 E2E(ms) | P99 E2E(ms) | SLO |\n")
|
|
f.write("|---|---:|---:|---:|---:|---:|---:|---:|---:|---:|---:|---:|---:|---:|---:|---:|---:|---:|---:|---:|\n")
|
|
|
|
for s in scenarios:
|
|
cfg = s["config"]
|
|
m = s["metrics"]
|
|
slo = s.get("slo_status", {}).get("overall", "")
|
|
f.write(
|
|
f"| {s['name']} | {cfg['concurrency']} | {cfg['input_len']} | {cfg['output_len']} | "
|
|
f"{m['duration_s']:.2f} | {m['success']} | {m['request_throughput']:.2f} | "
|
|
f"{m['input_token_throughput']:.2f} | {m['output_token_throughput']:.2f} | "
|
|
f"{m['total_token_throughput']:.2f} | "
|
|
f"{m['ttft_ms']['mean']:.2f} | {m['ttft_ms']['p95']:.2f} | {m['ttft_ms']['p99']:.2f} | "
|
|
f"{m['tpot_ms']['mean']:.2f} | {m['tpot_ms']['p95']:.2f} | {m['tpot_ms']['p99']:.2f} | "
|
|
f"{m['e2e_ms']['mean']:.2f} | {m['e2e_ms']['p95']:.2f} | {m['e2e_ms']['p99']:.2f} | {slo} |\n"
|
|
)
|
|
f.write("\n")
|
|
f.write("SLO: S2 tier — TTFT P95 < 3000ms, TPOT mean < 50ms. ✅ pass, ⚠️ partial, ❌ fail.\n\n")
|
|
|
|
|
|
def main() -> None:
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument("result_root", type=Path)
|
|
parser.add_argument("--backend", default=None, choices=["dspark", "default"])
|
|
args = parser.parse_args()
|
|
|
|
result_root = args.result_root
|
|
raw_dir = result_root / "raw_outputs"
|
|
results_json = result_root / "results.json"
|
|
|
|
if not raw_dir.exists():
|
|
raise SystemExit(f"raw_outputs directory not found: {raw_dir}")
|
|
|
|
backend = args.backend
|
|
if backend is None:
|
|
for p in raw_dir.iterdir():
|
|
if p.name.startswith("dspark_"):
|
|
backend = "dspark"
|
|
break
|
|
if p.name.startswith("default_"):
|
|
backend = "default"
|
|
break
|
|
if backend is None:
|
|
raise SystemExit("Could not infer backend from raw outputs")
|
|
|
|
scenarios = []
|
|
for jsonl_path in sorted(raw_dir.glob(f"{backend}_*.jsonl")):
|
|
parts = jsonl_path.stem.split("_")
|
|
if len(parts) < 5:
|
|
continue
|
|
try:
|
|
concurrency, input_len, output_len = int(parts[-3]), int(parts[-2]), int(parts[-1])
|
|
except ValueError:
|
|
continue
|
|
|
|
data = parse_jsonl(jsonl_path)
|
|
if data is None:
|
|
continue
|
|
|
|
metrics = compute_metrics(data)
|
|
scenario = {
|
|
"name": scenario_name(concurrency, input_len, output_len),
|
|
"config": {
|
|
"concurrency": concurrency,
|
|
"input_len": input_len,
|
|
"output_len": output_len,
|
|
"dataset": "random",
|
|
"num_prompts": metrics["success"] + metrics["failed"],
|
|
},
|
|
"metrics": metrics,
|
|
"slo_status": slo_status(metrics),
|
|
"raw_file": str(jsonl_path),
|
|
}
|
|
scenarios.append(scenario)
|
|
|
|
if not scenarios:
|
|
print("No benchmark outputs found to parse")
|
|
return
|
|
|
|
if results_json.exists():
|
|
for s in scenarios:
|
|
append_scenario(results_json, s)
|
|
|
|
generate_report(result_root, backend, scenarios)
|
|
print(f"Parsed {len(scenarios)} scenarios into {result_root}/report.md")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|