File size: 35,044 Bytes
d4c2896 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 | #!/usr/bin/env python3
"""Acceptance (alpha/tau) benchmark via llama-server (requires gaps G1/G3/G4).
Why a server and not llama-cli:
- llama-cli does NOT expose speculative-decoding statistics; llama-server DOES:
every /completion response returns timings.draft_n and timings.draft_n_accepted
(server-task.cpp result_timings::to_json), plus predicted_per_second.
- Additionally, with --verbose it writes per-request log lines:
"draft acceptance = 0.xxxxx (N accepted / M generated), mean len = X.XX"
and at TRC level "acc per pos = (r1, r2, ...)" (per-position curve, optional:
parse <out>/server.log after the run).
Protocol parity with F1/F2/F3 (llama-cli, default n_max = 3 in common.h):
- --spec-draft-n-max 3, -c 2048, -t 8, seed 42, n_predict 256.
- Explicit sampling in the body: temperature 0.0 (pure greedy argmax; ignores
top_k/top_p), top_k 40, top_p 0.95 β the final run corrects F1/F2/F3 which
ran at T=0.8 (llama-cli defaults). Non-thinking: --reasoning off in the
server command (if raw mode rejects it, the documented escape is in --help).
- The numbers from this script are ONLY comparable among themselves
(server-consistent methodology: each config starts its own server). DO NOT
mix with the F1/F2/F3 tok/s (fresh process per prompt vs persistent server).
Anti-rerun design (identical to bench_spec.py):
- <out>/results.jsonl (one line per OK prompt), <out>/errors.jsonl (failures,
retried with --resume), exclusive lock (exit 3 if another runner writes the
same --out), vram.json (max_gpu_mib + max_power_w sampled during the run),
config.json (args + sampling + reproducibility: llama.cpp commit, version,
sha256/size of the GGUFs), metrics.json (total and per-domain aggregates)
and results.csv (without text column) at the end.
- exit 0 = clean; 2 = failures; 3 = lock busy; 1 = server did not start or
died mid-run (abort after 2 consecutive connection failures).
Usage (example):
# 1) create a per-domain stratified subset (seed 42):
python scripts/bench_accept.py --make-subset-from experiments/prompts/f1-sample.jsonl \
--prompts experiments/prompts/acc-sample.jsonl --subset-per-domain 60
# 2) run one config (target + drafter):
python scripts/bench_accept.py --model models/Qwen3-8B-Q4_K_M.gguf \
--draft models/drafts/dflash_qwen3_8b_block7.gguf --spec-type draft-dflash \
--config-name q4-dflash-q4 --prompts experiments/prompts/acc-sample.jsonl \
--out experiments/runs/acc-q4-dflash-q4 --resume
# 3) target-solo (no drafter): omit --draft.
# 4) smoke/mini-runs: --max-prompts N (first N pending prompts).
RUN ONLY WITH THE GPU FREE (never while the F3 chain is measuring).
Per-record output: {id, domain, text, config, tok_per_s, alpha, tau, draft_n,
prompt_ms, predicted_ms, elapsed_s, attempts, ts} with alpha = draft_n_accepted /
draft_n (None if no draft), tau = draft_n_accepted (accepted tokens),
prompt_ms = TTFT (prefill), predicted_ms = total generation time.
"""
from __future__ import annotations
import argparse
import csv
import fcntl
import hashlib
import json
import math
import os
import random
import re
import shlex
import socket
import subprocess
import sys
import threading
import time
import urllib.request
from pathlib import Path
LLAMA_BIN = Path(os.environ.get("LLAMA_CPP_BIN", os.path.expanduser("~/llama.cpp/build/bin")))
SERVER_BIN = LLAMA_BIN / "llama-server"
# llama-cli default n_max in this build (common.h) β parity with F1/F2/F3.
DEFAULT_N_MAX = 3
# Sampling of the final run: true greedy (T=0 = pure argmax, ignores top_k/top_p),
# fixed seed 42. F1/F2/F3 ran at T=0.8 (llama-cli defaults) β not greedy.
DEFAULT_SAMPLING = {"temperature": 0.0, "top_k": 40, "top_p": 0.95}
# Fixed results.csv header (no text column; None β empty cell).
CSV_HEADER = [
"id",
"domain",
"config",
"tok_per_s",
"alpha",
"tau",
"draft_n",
"prompt_ms",
"predicted_ms",
"elapsed_s",
"attempts",
"ts",
]
# Shared sha256 cache of GGUFs (keyed path|size_bytes|mtime_ns) β avoids
# re-hashing ~12 GB per config (30-60 s) across the 25-config chain.
SHARED_HASH_CACHE = Path("experiments/runs/model-hashes.json")
class VramSampler:
"""Samples VRAM (memory.used) and power draw (power.draw) every 3 s in a daemon thread."""
def __init__(self, out_dir: Path) -> None:
self.out_dir = out_dir
self._max_mib = 0
self._max_power = 0.0
self._lock = threading.Lock()
self._stop = threading.Event()
self._thread = threading.Thread(target=self._run, daemon=True)
def start(self) -> None:
self._thread.start()
def stop(self) -> None:
self._stop.set()
self._thread.join(timeout=5)
with self._lock:
max_mib = self._max_mib
max_power = self._max_power
(self.out_dir / "vram.json").write_text(
json.dumps(
{
"max_gpu_mib": max_mib,
"max_power_w": max_power,
"sample_interval_s": 3,
"timestamp": time.strftime("%Y-%m-%dT%H:%M:%S"),
}
)
)
def _run(self) -> None:
while not self._stop.is_set():
try:
out = subprocess.run( # noqa: S603
[
"/usr/bin/nvidia-smi",
"--query-gpu=memory.used,power.draw",
"--format=csv,noheader,nounits",
],
capture_output=True,
text=True,
timeout=10,
check=True,
)
parts = [p.strip() for p in out.stdout.split(",")]
used = int(parts[0])
pwr_raw = parts[1] if len(parts) > 1 else ""
pwr = float(pwr_raw) if pwr_raw not in ("", "[N/A]") else 0.0
with self._lock:
self._max_mib = max(self._max_mib, used)
self._max_power = max(self._max_power, pwr)
except (subprocess.SubprocessError, ValueError, IndexError):
pass
self._stop.wait(3)
def _free_port() -> int:
with socket.socket() as s:
s.bind(("127.0.0.1", 0))
return s.getsockname()[1]
def _http_json(url: str, payload: dict | None = None, timeout: float = 30.0) -> tuple[int, dict]:
"""GET (payload=None) or POST JSON; returns (status, json)."""
if payload is None:
req = urllib.request.Request(url) # noqa: S310 β localhost
else:
req = urllib.request.Request( # noqa: S310 β localhost
url,
data=json.dumps(payload).encode("utf-8"),
headers={"Content-Type": "application/json"},
)
with urllib.request.urlopen(req, timeout=timeout) as resp: # noqa: S310 β localhost
return resp.status, json.loads(resp.read().decode("utf-8"))
class Server:
"""llama-server lifecycle: start β wait_health β stop (always)."""
def __init__(self, cmd: list[str]) -> None:
self.cmd = cmd
self.proc: subprocess.Popen | None = None
self.url = ""
def start(self, port: int) -> None:
self.url = f"http://127.0.0.1:{port}"
self.proc = subprocess.Popen( # noqa: S603 β internally controlled command
self.cmd,
stdout=subprocess.DEVNULL,
stderr=subprocess.DEVNULL,
)
def wait_health(self, timeout: float = 300.0) -> str:
"""Wait for /health == 200. Returns "" if OK, otherwise the reason."""
deadline = time.time() + timeout
while time.time() < deadline:
if self.proc is not None and self.proc.poll() is not None:
return f"server died on startup (rc={self.proc.returncode})"
try:
status, _ = _http_json(self.url + "/health", timeout=5)
if status == 200:
return ""
except Exception: # noqa: BLE001, S110 β still loading
pass
time.sleep(2)
return f"timeout waiting for /health ({int(timeout)}s)"
def stop(self) -> None:
if self.proc is not None and self.proc.poll() is None:
self.proc.terminate()
try:
self.proc.wait(timeout=10)
except subprocess.TimeoutExpired:
self.proc.kill()
self.proc = None
def _tail(text: str, n: int = 300) -> str:
return text[-n:] if text else ""
def _parse_completion(
data: dict,
) -> tuple[float | None, float | None, int | None, int | None, float | None, float | None]:
"""(tok_per_s, alpha, tau, draft_n, prompt_ms, predicted_ms) from /completion.
alpha = draft_n_accepted / draft_n; tau = draft_n_accepted. With draft_n 0
or missing (target-solo configs) alpha/tau/draft_n are None (spec). prompt_ms
(TTFT) and predicted_ms are draft-independent and always present.
"""
tim = data.get("timings", {})
tok_s = tim.get("predicted_per_second")
draft_n = tim.get("draft_n")
draft_acc = tim.get("draft_n_accepted")
alpha: float | None = None
tau: int | None = None
if draft_n:
if draft_acc is not None:
alpha = round(draft_acc / draft_n, 4)
tau = draft_acc
else:
draft_n = None
prompt_ms = tim.get("prompt_ms")
predicted_ms = tim.get("predicted_ms")
return tok_s, alpha, tau, draft_n, prompt_ms, predicted_ms
def read_git_commit(repo: str) -> str | None:
"""HEAD commit of the pinned repo (fixed -C); None non-fatal if it fails.
The run proceeds without commit reproducibility (threat matrix: git).
"""
try:
out = subprocess.run( # noqa: S603 β fixed internal repo
["git", "-C", str(repo), "rev-parse", "HEAD"], # noqa: S607 β git from the env PATH
capture_output=True,
text=True,
timeout=10,
check=True,
)
except (subprocess.SubprocessError, FileNotFoundError):
return None
return out.stdout.strip() or None
def parse_llama_version(bin_path: Path) -> str | None:
"""Binary version: 'version: 22 (0713275)' β '22'; 'build: 10249' β '10249'.
None if the binary does not answer or the format is not recognized.
"""
try:
out = subprocess.run( # noqa: S603, S607 β internally controlled binary
[str(bin_path), "--version"],
capture_output=True,
text=True,
timeout=15,
check=True,
)
except (subprocess.SubprocessError, FileNotFoundError):
return None
combined = (out.stdout or "") + "\n" + (out.stderr or "")
m = re.search(r"version:\s*(\S+)", combined)
if m:
return m.group(1)
m = re.search(r"build:\s*(\d+)", combined)
return m.group(1) if m else None
def file_sha256(path: Path, cache: dict[tuple[str, int, int], str] | None = None) -> str | None:
"""SHA-256 of a file; cache keyed (path, size_bytes, mtime_ns) (hit β no re-hash).
None if the file does not exist or is not readable.
"""
try:
st = path.stat()
except OSError:
return None
key = (str(path), st.st_size, st.st_mtime_ns)
if cache is not None and key in cache:
return cache[key]
h = hashlib.sha256()
try:
with path.open("rb") as f:
for chunk in iter(lambda: f.read(1 << 20), b""):
h.update(chunk)
except OSError:
return None
digest = h.hexdigest()
if cache is not None:
cache[key] = digest
return digest
def _cache_key_str(key: tuple[str, int, int]) -> str:
return f"{key[0]}|{key[1]}|{key[2]}"
def load_hash_cache(path: Path) -> dict[tuple[str, int, int], str]:
"""Load the shared cache (JSON with 'path|size|mtime_ns' keys) β dict of tuples."""
cache: dict[tuple[str, int, int], str] = {}
try:
if path.exists():
raw = json.loads(path.read_text())
for k, v in raw.items():
p, s, m = k.rsplit("|", 2)
cache[(p, int(s), int(m))] = v
except (OSError, ValueError):
pass
return cache
def save_hash_cache(path: Path, cache: dict[tuple[str, int, int], str]) -> bool:
"""Save the shared cache; True if OK, False if it failed (per-out fallback)."""
try:
path.parent.mkdir(parents=True, exist_ok=True)
path.write_text(json.dumps({_cache_key_str(k): v for k, v in cache.items()}, indent=2))
return True
except OSError:
return False
def _gguf_meta(path: str, cache: dict[tuple[str, int, int], str]) -> dict:
p = Path(path)
st = p.stat() if p.exists() else None
return {"path": path, "size_bytes": st.st_size if st else None, "sha256": file_sha256(p, cache)}
def read_reproducibility(
model: str, draft: str | None, cache: dict[tuple[str, int, int], str]
) -> dict:
"""Reproducibility metadata: llama.cpp commit + version + sha256/size of GGUFs.
Failed git β commit None + warn (the run continues; null reproducibility).
"""
repo = os.path.expanduser("~/llama.cpp")
commit = read_git_commit(repo)
if commit is None:
print(
f"[bench] WARN: could not read the commit of {repo} β incomplete reproducibility",
file=sys.stderr,
)
return {
"llama_cpp_commit": commit,
"llama_cpp_version": parse_llama_version(SERVER_BIN),
"host": socket.gethostname(),
"ts": time.strftime("%Y-%m-%dT%H:%M:%S"),
"model": _gguf_meta(model, cache),
"draft": _gguf_meta(draft, cache) if draft else None,
}
def build_server_cmd(
args: argparse.Namespace, port: int, out_dir: Path, log_name: str = "server.log"
) -> list[str]:
"""llama-server command: target (Β± drafter), non-thinking (--reasoning off).
--reasoning off goes after --verbose and before the extras; no auto-retry
(if raw mode rejects it, the escape is --extra reasoning_effort:"none",
see --help of --extra).
"""
cmd = [
str(SERVER_BIN),
"-m",
args.model,
"-ngl",
str(args.n_gpu_layers),
"-c",
str(args.ctx),
"-t",
str(args.threads),
"-np",
"1",
"--host",
"127.0.0.1",
"--port",
str(port),
"--log-file",
str(out_dir / log_name),
"--verbose",
]
if args.draft:
cmd += [
"-md",
args.draft,
"--spec-type",
args.spec_type,
"--spec-draft-n-max",
str(args.spec_draft_n_max),
"-ngld",
str(args.draft_ngl),
]
if args.spec_draft_p_min is not None:
cmd += ["--spec-draft-p-min", str(args.spec_draft_p_min)]
cmd += ["--reasoning", "off"]
cmd += [a for pair in args.extra for a in shlex.split(pair)]
return cmd
def resume_done(results_path: Path, errors_path: Path) -> set[str]:
"""Ids already processed (results.jsonl) or known failures (errors.jsonl) for resume.
Includes failures so prompts that always fail are not retried (e.g. the 8
arena-hard-v2 ones > ctx 2048) and errors.jsonl entries are not duplicated.
Tolerates corrupt lines (e.g. power loss) and missing files.
"""
done: set[str] = set()
for path in (results_path, errors_path):
if not path.exists():
continue
for line in path.read_text(encoding="utf-8", errors="replace").splitlines():
try:
done.add(json.loads(line)["id"])
except (json.JSONDecodeError, KeyError):
continue
return done
def pending_prompts(records: list[dict], done: set[str], max_prompts: int | None) -> list[dict]:
"""Pending = records not completed (resume), truncated to max_prompts (N>0)."""
pending = [p for p in records if p["id"] not in done]
if max_prompts is not None and max_prompts > 0:
pending = pending[:max_prompts]
return pending
def read_results(results_path: Path) -> list[dict]:
"""Read results.jsonl tolerating corrupt lines (power loss) and a missing file."""
records: list[dict] = []
if results_path.exists():
for line in results_path.read_text(encoding="utf-8", errors="replace").splitlines():
try:
records.append(json.loads(line))
except json.JSONDecodeError:
continue
return records
def server_log_path(out_dir: Path) -> Path:
"""llama-server session log: server.log the 1st time, server-2.log/3.log on
resumes. llama-server TRUNCATES --log-file (fopen "w", log.cpp:322) β a resume
of a partial config must not erase the "acc per pos" curves of its previous session."""
first = out_dir / "server.log"
if not first.exists():
return first
n = 2
while (out_dir / f"server-{n}.log").exists():
n += 1
return out_dir / f"server-{n}.log"
def _server_alive(url: str) -> bool:
"""Probe /health: True if the server answers 200 (not down)."""
try:
status, _ = _http_json(url + "/health", timeout=5)
return status == 200
except Exception: # noqa: BLE001, S110 β server down
return False
def _mean(xs: list[float]) -> float | None:
return round(sum(xs) / len(xs), 4) if xs else None
def _median(xs: list[float]) -> float | None:
if not xs:
return None
s = sorted(xs)
n = len(s)
mid = n // 2
if n % 2 == 1:
return round(s[mid], 4)
return round((s[mid - 1] + s[mid]) / 2, 4)
def _pct(xs: list[float], p: float) -> float | None:
if not xs:
return None
s = sorted(xs)
idx = min(len(s) - 1, max(0, math.ceil(p / 100 * len(s)) - 1))
return round(s[idx], 4)
def write_metrics(out_dir: Path, records: list[dict], failed: int, duration_s: float) -> Path:
"""Write metrics.json with total and per-domain aggregates (math/code/chat).
Resume-safe: the caller passes ALL records (this run + those re-read from
results.jsonl, which include the previous ones). Aggregates ignore None
(alpha/tau/draft_n of target-solo configs). sampling/spec/reproducibility
are copied from config.json; vram/power from vram.json.
"""
cfg: dict = {}
vram: dict = {}
try:
cfg = json.loads((out_dir / "config.json").read_text())
except (OSError, ValueError):
pass
try:
vram = json.loads((out_dir / "vram.json").read_text())
except (OSError, ValueError):
pass
toks = [r["tok_per_s"] for r in records if r.get("tok_per_s") is not None]
alphas = [r["alpha"] for r in records if r.get("alpha") is not None]
taus = [r["tau"] for r in records if r.get("tau") is not None]
draft_ns = [r["draft_n"] for r in records if r.get("draft_n") is not None]
ttfts = [r["prompt_ms"] for r in records if r.get("prompt_ms") is not None]
per_domain: dict[str, dict] = {}
for dom in ("math", "code", "chat"):
dr = [r for r in records if r.get("domain") == dom]
dtoks = [r["tok_per_s"] for r in dr if r.get("tok_per_s") is not None]
dalphas = [r["alpha"] for r in dr if r.get("alpha") is not None]
dtaus = [r["tau"] for r in dr if r.get("tau") is not None]
dttfts = [r["prompt_ms"] for r in dr if r.get("prompt_ms") is not None]
per_domain[dom] = {
"n": len(dr),
"tok_per_s.mean": _mean(dtoks),
"alpha.mean": _mean(dalphas),
"tau.mean": _mean(dtaus),
"ttft.mean": _mean(dttfts),
}
metrics = {
"prompts": {"total": len(records) + failed, "ok": len(records), "failed": failed},
"tok_per_s": {
"mean": _mean(toks),
"median": _median(toks),
"p50": _median(toks),
"p95": _pct(toks, 95),
"min": round(min(toks), 4) if toks else None,
"max": round(max(toks), 4) if toks else None,
},
"alpha": {"mean": _mean(alphas), "median": _median(alphas)},
"tau": {"mean": _mean(taus), "median": _median(taus)},
"draft_n": {"total": sum(draft_ns), "mean": _mean(draft_ns), "median": _median(draft_ns)},
"ttft": {
"prompt_ms.mean": _mean(ttfts),
"prompt_ms.median": _median(ttfts),
"prompt_ms.p95": _pct(ttfts, 95),
},
"vram": {"max_gpu_mib": vram.get("max_gpu_mib")},
"power": {"max_power_w": vram.get("max_power_w")},
"duration_s": round(duration_s, 2),
"errors": failed,
"per_domain": per_domain,
"sampling": cfg.get("sampling", {}),
"spec": cfg.get("spec", {}),
"reproducibility": cfg.get("reproducibility", {}),
}
path = out_dir / "metrics.json"
path.write_text(json.dumps(metrics, indent=2, ensure_ascii=False) + "\n")
return path
def export_csv(results_path: Path) -> Path:
"""Export results.jsonl β results.csv (fixed header, no text column)."""
csv_path = results_path.with_suffix(".csv")
with csv_path.open("w", newline="") as f:
w = csv.writer(f)
w.writerow(CSV_HEADER)
for line in results_path.read_text().splitlines():
if not line.strip():
continue
try:
r = json.loads(line)
except ValueError:
continue
w.writerow([r.get(h) for h in CSV_HEADER])
return csv_path
def make_subset(source: Path, dest: Path, per_domain: int, seed: int) -> int:
"""Stratified subset: up to per_domain prompts per domain (shuffle seed)."""
by_domain: dict[str, list[dict]] = {}
for line in source.read_text().splitlines():
if not line.strip():
continue
p = json.loads(line)
by_domain.setdefault(p.get("domain", "unknown"), []).append(p)
rng = random.Random(seed) # noqa: S311 β deterministic shuffle with fixed seed
total = 0
with dest.open("w") as f:
for dom in sorted(by_domain):
chosen = by_domain[dom][:]
rng.shuffle(chosen)
chosen = chosen[:per_domain]
for p in chosen:
f.write(json.dumps(p, ensure_ascii=False) + "\n")
total += len(chosen)
print(f"[subset] {dom}: {len(chosen)}/{len(by_domain[dom])}", file=sys.stderr)
print(f"[subset] {total} prompts β {dest}", file=sys.stderr)
return 0
def main() -> int:
ap = argparse.ArgumentParser(
description=__doc__, formatter_class=argparse.RawDescriptionHelpFormatter
)
ap.add_argument("--model", default=None, help="Target GGUF")
ap.add_argument("--draft", default=None, help="Drafter GGUF (omit = target-solo)")
ap.add_argument(
"--spec-type",
default="none",
help="draft-simple|draft-eagle3|draft-mtp|draft-dflash|draft-dspark",
)
ap.add_argument(
"--spec-draft-n-max", type=int, default=DEFAULT_N_MAX, help="llama-cli parity n_max"
)
ap.add_argument("--spec-draft-p-min", type=float, default=None, help="DSpark confidence cutoff")
ap.add_argument("--config-name", default=None, help="Label in every record (default: stems)")
ap.add_argument("--prompts", required=True, type=Path)
ap.add_argument("--out", default=None, type=Path)
ap.add_argument("--n-tokens", type=int, default=256)
ap.add_argument("--seed", type=int, default=42)
ap.add_argument("--temperature", type=float, default=DEFAULT_SAMPLING["temperature"])
ap.add_argument("--top-k", type=int, default=DEFAULT_SAMPLING["top_k"])
ap.add_argument("--top-p", type=float, default=DEFAULT_SAMPLING["top_p"])
ap.add_argument("--n-gpu-layers", type=int, default=99)
ap.add_argument("--draft-ngl", type=int, default=99, help="GPU layers of the drafter (-ngld)")
ap.add_argument("--ctx", type=int, default=2048)
ap.add_argument("--threads", type=int, default=8)
ap.add_argument("--retries", type=int, default=2)
ap.add_argument("--server-timeout", type=float, default=300.0, help="Wait for /health (s)")
ap.add_argument(
"--max-prompts",
type=int,
default=None,
help="Only the first N pending prompts (smoke/mini-runs/OOM-CHECK)",
)
ap.add_argument("--resume", action="store_true")
ap.add_argument(
"--extra",
action="append",
default=[],
help=(
"Extra flags for llama-server (shlex). If raw mode rejects --reasoning off, "
'documented escape: --extra reasoning_effort:"none"'
),
)
ap.add_argument(
"--make-subset-from", type=Path, default=None, help="Subset mode: source f1-sample.jsonl"
)
ap.add_argument("--subset-per-domain", type=int, default=60)
args = ap.parse_args()
if args.make_subset_from is not None:
return make_subset(args.make_subset_from, args.prompts, args.subset_per_domain, args.seed)
if args.model is None or args.out is None:
ap.error("--model and --out are required outside --make-subset-from mode")
if not SERVER_BIN.exists():
print(f"[bench] ERROR: {SERVER_BIN} does not exist (did llama.cpp build?)", file=sys.stderr)
return 1
out_dir = args.out
out_dir.mkdir(parents=True, exist_ok=True)
results_path = out_dir / "results.jsonl"
errors_path = out_dir / "errors.jsonl"
# Reproducibility: commit + version + sha256/size of GGUFs with the shared
# cache (experiments/runs/model-hashes.json); per-out fallback.
hash_cache = load_hash_cache(SHARED_HASH_CACHE)
reproducibility = read_reproducibility(args.model, args.draft, hash_cache)
if not save_hash_cache(SHARED_HASH_CACHE, hash_cache):
save_hash_cache(out_dir / "model-hashes.json", hash_cache)
cfg = {k: (str(v) if isinstance(v, Path) else v) for k, v in vars(args).items()}
cfg["sampling"] = {
"temperature": args.temperature,
"top_k": args.top_k,
"top_p": args.top_p,
"seed": args.seed,
}
cfg["spec"] = {
"type": args.spec_type,
"draft_n_max": args.spec_draft_n_max,
"p_min": args.spec_draft_p_min,
}
cfg["reproducibility"] = reproducibility
(out_dir / "config.json").write_text(json.dumps(cfg, indent=2, ensure_ascii=False))
done: set[str] = set()
if args.resume:
done = resume_done(results_path, errors_path)
print(
f"[bench] resume: {len(done)} prompts already processed (results + known errors)",
file=sys.stderr,
)
records_all: list[dict] = []
for line in args.prompts.read_text().splitlines():
if not line.strip():
continue
try:
records_all.append(json.loads(line))
except json.JSONDecodeError:
continue
pending = pending_prompts(records_all, done, args.max_prompts)
if args.max_prompts is not None:
print(
f"[bench] max-prompts={args.max_prompts}: {len(pending)} prompts in this run",
file=sys.stderr,
)
if not pending:
# R3-003: with no pending prompts we do not start a server β protects
# server.log from truncation ("acc per pos" curves of already-completed
# configs) and avoids loading model/VRAM during resume walks.
print(
"[bench] resume: no pending prompts β not starting the server "
"(protects server.log, avoids model/VRAM load)",
file=sys.stderr,
)
# Power loss: if the config ended up without metrics/csv (crash before
# the final aggregation), they are regenerated from results.jsonl β no server/GPU.
if not (out_dir / "metrics.json").exists() or not (out_dir / "results.csv").exists():
recs = read_results(results_path)
export_csv(results_path)
write_metrics(out_dir, recs, 0, 0.0)
print(
"[bench] early-exit: metrics.json/results.csv regenerated (were missing)",
file=sys.stderr,
)
return 0
port = _free_port()
cmd = build_server_cmd(args, port, out_dir, log_name=server_log_path(out_dir).name)
config_name = args.config_name or (
Path(args.model).stem
if not args.draft
else f"{Path(args.model).stem}+{Path(args.draft).stem}"
)
server = Server(cmd)
# Anti-rerun lock BEFORE starting the server (R4-001): if another runner
# writes this --out, we abort without spawning processes or using the GPU.
guard = results_path.open("a")
try:
fcntl.flock(guard.fileno(), fcntl.LOCK_EX | fcntl.LOCK_NB)
except OSError:
guard.close()
print(
"[bench] ERROR: another runner is writing this --out (lock busy). "
"Wait for it to finish or check it with ps.",
file=sys.stderr,
)
return 3
t_start = time.time()
print(f"[bench] starting llama-server at {server.url} (pid launched)", file=sys.stderr)
server.start(port)
try:
reason = server.wait_health(args.server_timeout)
if reason:
server.stop()
guard.close()
print(f"[bench] ERROR: {reason} β see {out_dir / 'server.log'}", file=sys.stderr)
return 1
print("[bench] server OK", file=sys.stderr)
except Exception: # noqa: BLE001
server.stop()
guard.close()
raise
n_new = 0
n_failed = 0
aborted = False
vram = VramSampler(out_dir)
vram.start()
try:
with results_path.open("a") as fout, errors_path.open("a") as ferr:
body = {
"prompt": None, # per prompt
"n_predict": args.n_tokens,
"seed": args.seed,
"temperature": args.temperature,
"top_k": args.top_k,
"top_p": args.top_p,
"cache_prompt": False,
"stream": False,
}
consec_conn = 0
for p in pending:
if p["id"] in done:
continue
n_new += 1
record: dict | None = None
last_err = ""
detail_text = ""
for attempt in range(1, args.retries + 1):
t0 = time.time()
try:
body["prompt"] = p["text"]
status, data = _http_json(server.url + "/completion", body, timeout=900)
tok_s, alpha, tau, draft_n, prompt_ms, predicted_ms = _parse_completion(
data
)
if status != 200:
detail_text = _tail(str(data), 300)
except Exception as e: # noqa: BLE001 β overnight hardening
status = 0
tok_s, alpha, tau, draft_n, prompt_ms, predicted_ms = (
None,
None,
None,
None,
None,
None,
)
last_err = repr(e)
elapsed = time.time() - t0
if status == 200 and tok_s is not None:
consec_conn = 0
record = {
"id": p["id"],
"domain": p.get("domain"),
"text": p["text"],
"config": config_name,
"tok_per_s": round(tok_s, 3),
"alpha": alpha,
"tau": tau,
"draft_n": draft_n,
"prompt_ms": round(prompt_ms, 1) if prompt_ms is not None else None,
"predicted_ms": round(predicted_ms, 1)
if predicted_ms is not None
else None,
"elapsed_s": round(elapsed, 2),
"attempts": attempt,
"ts": time.strftime("%Y-%m-%dT%H:%M:%S"),
}
break
if status == 0:
consec_conn += 1
else:
consec_conn = 0
if consec_conn >= 2 and not _server_alive(server.url):
print(
f"[bench] ERROR: server not responding (2 consecutive "
f"connection failures: {last_err}) β abort",
file=sys.stderr,
)
aborted = True
break
last_err = f"status={status} {last_err}"
print(
f"[bench] {p['id']} attempt {attempt} failed ({last_err})", file=sys.stderr
)
if record is not None:
fout.write(json.dumps(record, ensure_ascii=False) + "\n")
fout.flush()
print(
f"[bench] {p['id']}: {record['tok_per_s']} tok/s "
f"Ξ±={record['alpha']} Ο={record['tau']} ({record['elapsed_s']}s)",
file=sys.stderr,
)
else:
n_failed += 1
ferr.write(
json.dumps(
{
"id": p["id"],
"domain": p.get("domain"),
"error": last_err,
"detail": detail_text or last_err,
"attempts": args.retries,
},
ensure_ascii=False,
)
+ "\n"
)
ferr.flush()
print(
f"[bench] {p['id']} FAILED after {args.retries} attempts β errors.jsonl",
file=sys.stderr,
)
if aborted:
break
finally:
server.stop()
vram.stop()
guard.close()
# Final metrics: re-read the full results.jsonl (resume-safe) β CSV + JSON.
records = read_results(results_path)
export_csv(results_path)
write_metrics(out_dir, records, n_failed, time.time() - t_start)
print(
f"[bench] done: {n_new - n_failed} new valid, {n_failed} failures, "
f"{len(done)} previous β {results_path}"
)
if aborted:
return 1
return 0 if n_failed == 0 else 2
if __name__ == "__main__":
sys.exit(main())
|