diff --git a/bench_random_mixed.c b/bench_random_mixed.c index 2efb036f..2a8dd0f6 100644 --- a/bench_random_mixed.c +++ b/bench_random_mixed.c @@ -137,7 +137,8 @@ int main(int argc, char** argv){ uint64_t end = now_ns(); double sec = (double)(end-start)/1e9; double tput = (double)cycles / (sec>0.0?sec:1e-9); - printf("Throughput = %9.0f operations per second, relative time: %.3fs.\n", tput, sec); + // Include params in output to avoid confusion about test conditions + printf("Throughput = %9.0f ops/s [iter=%d ws=%d] time=%.3fs\n", tput, cycles, ws, sec); (void)allocs; (void)frees; // Box BenchMeta: Use __libc_free to bypass hakmem wrapper