1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/website
2018-10-11 16:55:22 -04:00
..
app.js Add throughput benchmark (#961) 2018-10-11 16:55:22 -04:00
app_test.js Add throughput benchmark (#961) 2018-10-11 16:55:22 -04:00
index.html Add throughput benchmark (#961) 2018-10-11 16:55:22 -04:00
README.md refactor: stop hard coding some of benchmark names 2018-10-06 23:32:02 -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;
  };
}