Initial commit

This commit is contained in:
2026-01-25 15:51:35 +02:00
commit bb0a195e73
11 changed files with 410 additions and 0 deletions

43
docs/runbook.md Normal file
View File

@@ -0,0 +1,43 @@
# Runbook
## 1) Build
```bash
cargo build --release
```
## 2) Start server
Example:
```bash
./target/release/bench-server --mode x25519 --listen 0.0.0.0:4433
```
## 3) Run client benchmark
Example:
```bash
./target/release/bench-runner \
--server 1.2.3.4:4433 \
--mode x25519mlkem768 \
--payload-bytes 1024 \
--concurrency 10 \
--iters 500 \
--warmup 50 \
--out results.ndjson
```
## 4) Collect perf stats (optional)
Run on the client:
```bash
perf stat -e cycles,instructions,cache-misses \
./target/release/bench-runner ...
```
## 5) Summarize
Use a script to compute p50/p95/p99 from NDJSON.