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 e34790f commit 637aa96Copy full SHA for 637aa96
site/static/index.html
@@ -323,7 +323,7 @@ <h3>This may take a while!</h3>
323
let cacheStateNames = Object.keys(cacheStates);
324
cacheStateNames.sort();
325
326
- let yAxis = "Value";
+ let yAxis = state.stat;
327
let yAxisUnit = null;
328
if (state.stat == "instructions:u") {
329
yAxis = "CPU instructions";
@@ -332,7 +332,10 @@ <h3>This may take a while!</h3>
332
yAxis = "CPU cycles";
333
yAxisUnit = "count";
334
} else if (state.stat == "cpu-clock") {
335
- yAxis = "CPU time";
+ yAxis = "CPU clock";
336
+ yAxisUnit = "seconds";
337
+ } else if (state.stat == "task-clock") {
338
+ yAxis = "Task clock";
339
yAxisUnit = "seconds";
340
} else if (state.stat == "wall-time") {
341
yAxis = "Wall time";
0 commit comments