We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 022c470 commit 7b3194bCopy full SHA for 7b3194b
packages/tinybench-plugin/src/walltime.ts
@@ -109,8 +109,8 @@ function convertTinybenchResultToBenchmarkStats(
109
median_ns,
110
q3_ns,
111
total_time: result.totalTime / 1_000, // convert from ms to seconds
112
- iter_per_round: sortedTimesNs.length,
113
- rounds: 1, // Tinybench only runs one round
+ iter_per_round: 1, // as there is only one round in tinybench, we define that there were n rounds of 1 iteration
+ rounds: sortedTimesNs.length,
114
iqr_outlier_rounds,
115
stdev_outlier_rounds,
116
warmup_iters: warmupIterations,
0 commit comments