1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-13 16:26:08 -05:00
denoland-deno/website
bdistin 6345b60ed8 clarify benchmark chart units
Currently, the Travis chart displays "time" as the y-label of the graph, when in fact the unit is in minutes. (makes this consistent with other y-labels being "seconds")
2018-11-01 13:52:27 -07:00
..
all_benchmark.html feat: show only 20 benchmark data in inde.html 2018-10-20 08:07:20 -04:00
app.js clarify benchmark chart units 2018-11-01 13:52:27 -07:00
app_test.js Clean up y-axes on benchmark page. (#1077) 2018-10-24 07:04:33 -07:00
index.html feat: show only 20 benchmark data in inde.html 2018-10-20 08:07:20 -04:00
README.md refactor: stop hard coding some of benchmark names 2018-10-06 23:32:02 -04:00
style.css Add style to benchmark page 2018-10-19 21:36:07 -04:00

About benchmark data

The benchmark chart supposes //website/data.json has the type BenchmarkData[] where BenchmarkData is defined like the below:

interface ExecTimeData {
  mean: number;
  stddev: number;
  user: number;
  system: number;
  min: number;
  max: number;
}

interface BenchmarkData {
  created_at: string;
  sha1: string;
  benchmark: {
    [key: string]: ExecTimeData;
  };
  binarySizeData: {
    [key: string]: number;
  };
  threadCountData: {
    [key: string]: number;
  };
  syscallCountData: {
    [key: string]: number;
  };
}