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 2b27a62 commit f87eb4eCopy full SHA for f87eb4e
index.html
@@ -988,7 +988,7 @@ <h2>Detailed Comparison</h2>
988
const ratio = curr_timing !== null ? (constant_time_add + curr_timing) / (constant_time_add + baseline_timing) : null;
989
990
let td = document.createElement('td');
991
- td.appendChild(document.createTextNode(curr_timing !== null ? `${curr_timing.toFixed(2)}s (×${ratio.toFixed(2)})` : '☠'));
+ td.appendChild(document.createTextNode(curr_timing !== null ? `${curr_timing.toFixed(3)}s (×${ratio.toFixed(2)})` : '☠'));
992
993
colorize(td, ratio);
994
tr.appendChild(td);
0 commit comments