GitHub Actions commited on
Commit
92ad589
·
1 Parent(s): 8808922

sync from abhijitramesh/webgpu-bench@2959a90e6b

Browse files
Files changed (1) hide show
  1. js/data.js +6 -0
js/data.js CHANGED
@@ -186,6 +186,12 @@ function synthesizeCpuRowsFromBaseline(results) {
186
  ...r,
187
  decode_tok_s: r.cpu_baseline_decode_tok_s,
188
  prefill_tok_s: r.cpu_baseline_prefill_tok_s,
 
 
 
 
 
 
189
  // CPU baseline runs have no t_eval / n_eval breakdowns — null those
190
  // out so the table doesn't show stale GPU numbers in CPU rows.
191
  n_eval: null,
 
186
  ...r,
187
  decode_tok_s: r.cpu_baseline_decode_tok_s,
188
  prefill_tok_s: r.cpu_baseline_prefill_tok_s,
189
+ // The CPU baseline is a single-rep measurement (warmup + 1 timed),
190
+ // so it has no stddev. Null out the stddev fields the spread above
191
+ // inherited from the GPU row — otherwise the table renders the
192
+ // CPU avg with the GPU's stddev attached, which is nonsensical.
193
+ decode_stddev_ts: null,
194
+ prefill_stddev_ts: null,
195
  // CPU baseline runs have no t_eval / n_eval breakdowns — null those
196
  // out so the table doesn't show stale GPU numbers in CPU rows.
197
  n_eval: null,