mirror of
https://github.com/denoland/deno
synced 2024-11-05 18:45:24 +00:00
.. | ||
all_benchmark.html | ||
app.js | ||
app_test.js | ||
deno_logo.png | ||
deno_logo_2.gif | ||
index.html | ||
manifest.json | ||
README.md | ||
rustdoc | ||
style.css | ||
typedoc |
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;
};
}