@@ -222,7 +222,7 @@ For Ethernet benchmarks, the simplest setup is:
222222
223223``` sh
224224export ARENA_ETH_IP=192.168.10.104
225- pixi run bench-full -- -- json-out bench_results.jsonl
225+ pixi run bench-full --json-out bench_results.jsonl
226226```
227227
228228Useful pre-defined tasks:
@@ -237,7 +237,7 @@ Useful pre-defined tasks:
237237- ` pixi run bench-no-quickack ` : disable Linux ` TCP_QUICKACK ` but keep ` TCP_NODELAY `
238238- ` pixi run bench-no-nodelay ` : disable ` TCP_NODELAY ` but keep ` TCP_QUICKACK ` requested
239239- ` pixi run bench-no-latency-tuning ` : disable both socket latency knobs
240- - ` pixi run bench-socket-matrix -- -- json-out bench_matrix.jsonl ` : run a small comparison matrix across socket-option variants
240+ - ` pixi run bench-socket-matrix --json-out bench_matrix.jsonl ` : run a small comparison matrix across socket-option variants
241241
242242Extra arguments after the task are forwarded to the CLI or script, so you can
243243still customize labels, durations, rates, and pattern paths.
@@ -246,8 +246,8 @@ Examples:
246246
247247``` sh
248248pixi run bench -- --json-out host_only.jsonl
249- pixi run bench-full -- -- json-out host_plus_stream.jsonl
250- pixi run bench-full -- -- stream-rate 250 --stream-seconds 8 --json-out stream_250hz.jsonl
249+ pixi run bench-full --json-out host_plus_stream.jsonl
250+ pixi run bench-full --stream-rate 250 --stream-seconds 8 --json-out stream_250hz.jsonl
251251pixi run python -m arena_interface --ethernet 192.168.10.104 bench --cmd-iters 500 --spf-rate 250
252252```
253253
@@ -264,8 +264,8 @@ run forever.
264264You can override that timeout from the CLI:
265265
266266``` sh
267- pixi run bench -- -- io-timeout 10
268- pixi run bench-full -- -- io-timeout 0
267+ pixi run bench --io-timeout 10
268+ pixi run bench-full --io-timeout 0
269269```
270270
271271Use ` --io-timeout 0 ` to disable the temporary benchmark timeout and fall back to
0 commit comments