-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: show only 20 benchmark data in inde.html
- Loading branch information
Showing
5 changed files
with
75 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,3 +14,4 @@ node_modules | |
/gh-pages | ||
# temp benchmark data | ||
/website/data.json | ||
/website/recent.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<!-- Copyright 2018 the Deno authors. All rights reserved. MIT license. --> | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>all benchmark data | deno</title> | ||
<link rel="stylesheet" href="https://unpkg.com/[email protected]/c3.min.css"> | ||
<link rel="stylesheet" href="style.css"> | ||
<meta content='width=device-width, initial-scale=1.0' name='viewport' /> | ||
</head> | ||
<body> | ||
<main> | ||
<h1>all benchmark data</h1> | ||
|
||
<p><a href="./">back</a> | ||
|
||
<h2>Execution time</h2> | ||
<div id="exec-time-chart"></div> | ||
|
||
<h2>Throughput</h2> | ||
<div id="throughput-chart"></div> | ||
|
||
<h2>Req/Sec</h2> | ||
<div id="req-per-sec-chart"></div> | ||
|
||
<h2>Executable size</h2> | ||
<div id="binary-size-chart"></div> | ||
|
||
<h2>Thread count</h2> | ||
<div id="thread-count-chart"></div> | ||
|
||
<h2>Syscall count</h2> | ||
<div id="syscall-count-chart"></div> | ||
|
||
<h2>Travis</h2> | ||
<div id="travis-compile-time-chart"></div> | ||
</main> | ||
<script src="https://unpkg.com/[email protected]/dist/d3.min.js"></script> | ||
<script src="https://unpkg.com/[email protected]/c3.min.js"></script> | ||
|
||
<script type="module"> | ||
import { drawCharts } from "./app.js"; | ||
window.chartWidth = 800 | ||
drawCharts("./data.json"); | ||
</script> | ||
</body> | ||
</html> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,13 +48,17 @@ <h2>Syscall count</h2> | |
<h2>Travis</h2> | ||
How long for Travis CI to return a green status for pull requests. | ||
<div id="travis-compile-time-chart"></div> | ||
|
||
<h2>References</h2> | ||
<p> <a href="./all_benchmark.html">All benchmark data</a> | ||
|
||
</main> | ||
<script src="https://unpkg.com/[email protected]/dist/d3.min.js"></script> | ||
<script src="https://unpkg.com/[email protected]/c3.min.js"></script> | ||
|
||
<script type="module"> | ||
import { main } from "./app.js"; | ||
main(); | ||
import { drawCharts } from "./app.js"; | ||
drawCharts("./recent.json"); | ||
</script> | ||
</body> | ||
</html> | ||
|