Spaces:
Build error
Build error
File size: 10,822 Bytes
9c7d451 ad6f44c 9c7d451 ad6f44c 9c7d451 e4a41fa 9c7d451 e4a41fa 9c7d451 e4a41fa 9c7d451 e4a41fa 9c7d451 ad6f44c 9c7d451 | 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 | #!/usr/bin/env python3
"""CLI runner for Headroom benchmark suite.
This script provides a convenient interface for running benchmarks and
generating reports. It wraps pytest-benchmark with Headroom-specific
options and markdown report generation.
Usage:
# Run all benchmarks
python benchmarks/run_benchmarks.py
# Run specific suite
python benchmarks/run_benchmarks.py --suite transforms
# Generate markdown report
python benchmarks/run_benchmarks.py --output report.md
# Compare against baseline
python benchmarks/run_benchmarks.py --compare baseline.json
# Save results as new baseline
python benchmarks/run_benchmarks.py --save-baseline baseline.json
Available Suites:
all - Run all benchmark suites (transforms + relevance)
latency - Compression overhead & cost-benefit analysis (standalone)
transforms - SmartCrusher, CacheAligner, RollingWindow
relevance - BM25Scorer, HybridScorer
crusher - SmartCrusher only
window - RollingWindow only
pipeline - Full transform pipeline
"""
from __future__ import annotations
import argparse
import json
import subprocess
import sys
from datetime import datetime
from pathlib import Path
from typing import Any
# Benchmark suite definitions
BENCHMARK_SUITES = {
"all": [
"benchmarks/bench_transforms.py",
"benchmarks/bench_relevance.py",
],
"latency": [], # Standalone script: python benchmarks/bench_latency.py
"transforms": [
"benchmarks/bench_transforms.py",
],
"relevance": [
"benchmarks/bench_relevance.py",
],
"crusher": [
"benchmarks/bench_transforms.py::TestSmartCrusherBenchmarks",
],
"aligner": [
"benchmarks/bench_transforms.py::TestCacheAlignerBenchmarks",
],
"window": [
"benchmarks/bench_transforms.py::TestRollingWindowBenchmarks",
],
"pipeline": [
"benchmarks/bench_transforms.py::TestTransformPipelineBenchmarks",
],
"bm25": [
"benchmarks/bench_relevance.py::TestBM25Benchmarks",
],
"hybrid": [
"benchmarks/bench_relevance.py::TestHybridBenchmarks",
],
}
# Performance targets (mean time in microseconds)
PERFORMANCE_TARGETS = {
"test_compress_100_items": 2000, # 2ms
"test_compress_1000_items": 10000, # 10ms
"test_compress_10000_items": 100000, # 100ms
"test_date_extraction": 1000, # 1ms
"test_hash_computation": 500, # 0.5ms
"test_window_50_turns": 5000, # 5ms
"test_window_200_turns": 20000, # 20ms
"test_single_item": 100, # 0.1ms
"test_batch_100": 1000, # 1ms
"test_batch_1000": 10000, # 10ms
"test_pipeline_simple": 5000, # 5ms
"test_pipeline_agentic": 30000, # 30ms
"test_pipeline_rag": 50000, # 50ms
}
def run_benchmarks(
suite: str,
output_json: str | None = None,
compare: str | None = None,
verbose: bool = False,
extra_args: list[str] | None = None,
) -> tuple[int, dict[str, Any] | None]:
"""Run benchmark suite via pytest.
Args:
suite: Name of benchmark suite to run.
output_json: Path to save JSON results.
compare: Path to baseline JSON for comparison.
verbose: Enable verbose output.
extra_args: Additional pytest arguments.
Returns:
Tuple of (exit_code, results_dict).
"""
if suite not in BENCHMARK_SUITES:
print(f"Error: Unknown suite '{suite}'")
print(f"Available suites: {', '.join(BENCHMARK_SUITES.keys())}")
return 1, None
# Build pytest command
cmd = [
sys.executable,
"-m",
"pytest",
"--benchmark-only",
"--benchmark-sort=name",
]
# Add test files/patterns
cmd.extend(BENCHMARK_SUITES[suite])
# Add output options
if output_json:
cmd.extend(["--benchmark-json", output_json])
# Add comparison
if compare:
cmd.extend(["--benchmark-compare", compare])
# Add verbosity
if verbose:
cmd.append("-v")
else:
cmd.append("-q")
# Add extra args
if extra_args:
cmd.extend(extra_args)
# Run benchmarks
print(f"Running {suite} benchmarks...")
print(f"Command: {' '.join(cmd)}")
print("-" * 60)
result = subprocess.run(cmd, capture_output=False)
# Load results if saved
results = None
if output_json and Path(output_json).exists():
with open(output_json) as f:
results = json.load(f)
return result.returncode, results
def generate_markdown_report(
results: dict[str, Any],
output_path: str,
include_targets: bool = True,
) -> None:
"""Generate markdown report from benchmark results.
Args:
results: Benchmark results dictionary (from pytest-benchmark JSON).
output_path: Path to write markdown file.
include_targets: Include performance target comparison.
"""
lines = []
# Header
lines.append("# Headroom SDK Benchmark Report")
lines.append("")
lines.append(f"Generated: {datetime.now().isoformat()}")
lines.append("")
# Machine info
if "machine_info" in results:
info = results["machine_info"]
lines.append("## Environment")
lines.append("")
lines.append(f"- **Machine**: {info.get('machine', 'unknown')}")
lines.append(f"- **Processor**: {info.get('processor', 'unknown')}")
lines.append(f"- **Python**: {info.get('python_version', 'unknown')}")
lines.append("")
# Summary table
lines.append("## Results Summary")
lines.append("")
lines.append("| Test | Mean | StdDev | Min | Max | Target | Status |")
lines.append("|------|------|--------|-----|-----|--------|--------|")
benchmarks = results.get("benchmarks", [])
passed = 0
failed = 0
for bench in benchmarks:
name = bench["name"]
stats = bench["stats"]
mean_us = stats["mean"] * 1_000_000 # Convert to microseconds
stddev_us = stats["stddev"] * 1_000_000
min_us = stats["min"] * 1_000_000
max_us = stats["max"] * 1_000_000
# Format times
mean_str = _format_time(mean_us)
stddev_str = _format_time(stddev_us)
min_str = _format_time(min_us)
max_str = _format_time(max_us)
# Check target
test_name = name.split("::")[-1]
target = PERFORMANCE_TARGETS.get(test_name)
if target:
target_str = _format_time(target)
if mean_us <= target:
status = "PASS"
passed += 1
else:
status = "FAIL"
failed += 1
else:
target_str = "-"
status = "-"
lines.append(
f"| `{test_name}` | {mean_str} | {stddev_str} | {min_str} | {max_str} | {target_str} | {status} |"
)
lines.append("")
# Summary stats
total = passed + failed
if total > 0:
lines.append("## Summary")
lines.append("")
lines.append(f"- **Passed**: {passed}/{total} ({100 * passed / total:.0f}%)")
lines.append(f"- **Failed**: {failed}/{total} ({100 * failed / total:.0f}%)")
lines.append("")
# Performance notes
lines.append("## Performance Targets")
lines.append("")
lines.append("| Component | Target | Notes |")
lines.append("|-----------|--------|-------|")
lines.append("| SmartCrusher (100 items) | < 2ms | Typical API response |")
lines.append("| SmartCrusher (1000 items) | < 10ms | Large tool output |")
lines.append("| SmartCrusher (10000 items) | < 100ms | Stress test |")
lines.append("| CacheAligner | < 1ms | Date extraction + hash |")
lines.append("| RollingWindow (50 turns) | < 5ms | Long conversation |")
lines.append("| RollingWindow (200 turns) | < 20ms | Stress test |")
lines.append("| BM25Scorer (batch 100) | < 1ms | Zero dependencies |")
lines.append("| HybridScorer (batch 100) | < 50ms | With embeddings |")
lines.append("")
# Write file
with open(output_path, "w") as f:
f.write("\n".join(lines))
print(f"Report written to: {output_path}")
def _format_time(microseconds: float) -> str:
"""Format time value with appropriate unit."""
if microseconds < 1000:
return f"{microseconds:.1f}us"
elif microseconds < 1_000_000:
return f"{microseconds / 1000:.2f}ms"
else:
return f"{microseconds / 1_000_000:.2f}s"
def main() -> int:
"""Main entry point."""
parser = argparse.ArgumentParser(
description="Run Headroom SDK benchmarks",
formatter_class=argparse.RawDescriptionHelpFormatter,
epilog=__doc__,
)
parser.add_argument(
"--suite",
"-s",
choices=list(BENCHMARK_SUITES.keys()),
default="all",
help="Benchmark suite to run (default: all)",
)
parser.add_argument(
"--output",
"-o",
help="Output markdown report path",
)
parser.add_argument(
"--json",
"-j",
help="Save raw JSON results to path",
)
parser.add_argument(
"--compare",
"-c",
help="Compare against baseline JSON",
)
parser.add_argument(
"--save-baseline",
help="Save results as baseline (alias for --json)",
)
parser.add_argument(
"--verbose",
"-v",
action="store_true",
help="Verbose output",
)
parser.add_argument(
"pytest_args",
nargs="*",
help="Additional pytest arguments",
)
args = parser.parse_args()
# Handle save-baseline as alias
json_output = args.json or args.save_baseline
# Latency suite is a standalone script, not pytest-benchmark
if args.suite == "latency":
cmd = [sys.executable, "benchmarks/bench_latency.py"]
if args.output:
cmd.extend(["--output", args.output])
if json_output:
cmd.extend(["--json", json_output])
if args.verbose:
cmd.append("-v")
print("Delegating to latency benchmark script...")
return subprocess.run(cmd).returncode
# Run benchmarks
exit_code, results = run_benchmarks(
suite=args.suite,
output_json=json_output,
compare=args.compare,
verbose=args.verbose,
extra_args=args.pytest_args,
)
# Generate markdown report if requested
if args.output and results:
generate_markdown_report(results, args.output)
elif args.output and json_output:
# Load results from saved JSON
with open(json_output) as f:
results = json.load(f)
generate_markdown_report(results, args.output)
return exit_code
if __name__ == "__main__":
sys.exit(main())
|