2018-09-21 12:06:59 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>deno benchmark</title>
|
|
|
|
<link rel="stylesheet" href="https://unpkg.com/c3@0.6.7/c3.min.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
2018-09-25 04:28:56 -04:00
|
|
|
<h2>Execution time</h2>
|
2018-09-23 11:54:07 -04:00
|
|
|
<div id="exec-time-chart"></div>
|
2018-09-25 04:28:56 -04:00
|
|
|
<h2>Binary size</h2>
|
2018-09-23 11:54:07 -04:00
|
|
|
<div id="binary-size-chart"></div>
|
2018-09-25 04:28:56 -04:00
|
|
|
<h2>Thread count</h2>
|
2018-09-24 18:12:52 -04:00
|
|
|
<div id="thread-count-chart"></div>
|
2018-09-25 04:28:56 -04:00
|
|
|
<h2>Syscall count</h2>
|
2018-09-24 23:58:18 -04:00
|
|
|
<div id="syscall-count-chart"></div>
|
2018-09-26 20:26:34 -04:00
|
|
|
<h2>Travis compile time</h2>
|
|
|
|
<div id="travis-compile-time-chart"></div>
|
2018-09-21 12:06:59 -04:00
|
|
|
<script src="https://unpkg.com/d3@5.7.0/dist/d3.min.js"></script>
|
|
|
|
<script src="https://unpkg.com/c3@0.6.7/c3.min.js"></script>
|
2018-09-24 11:31:14 -04:00
|
|
|
<script type="module">
|
|
|
|
import { main } from "./app.js";
|
|
|
|
main();
|
|
|
|
</script>
|
2018-09-21 12:06:59 -04:00
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|