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 ffcd337 commit 33223feCopy full SHA for 33223fe
index.html
@@ -993,7 +993,7 @@ <h2>Detailed Comparison</h2>
993
const ratio = curr_timing !== null ? (constant_time_add + curr_timing) / (constant_time_add + baseline_timing) : null;
994
995
let td = document.createElement('td');
996
- 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)})` : '☠'));
997
998
colorize(td, ratio);
999
tr.appendChild(td);
0 commit comments