-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreport.html
61 lines (48 loc) · 1.63 KB
/
report.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>ORM benchmarks</title>
<script type="module" src="node_modules/chart.js/dist/chart.umd.js"></script>
<script type="module" src="node_modules/chartjs-plugin-datalabels/dist/chartjs-plugin-datalabels.min.js"></script>
<script type="module" src="node_modules/json-formatter-js/dist/json-formatter.umd.js"></script>
<link rel="stylesheet" href="assets/style.css">
</head>
<body>
<i>Last benchmark date: <span id="lastBenchmarkDate"></span></i>
<h1>Benchmark report</h1>
<p>
GitHub repo: <a href="https://github.com/krzysztofhewelt/orm-benchmarking" target="_blank">https://github.com/krzysztofhewelt/orm-benchmarking</a>
</p>
<div>
<h2>Targets</h2>
<div class="benchmark-names-list" id="ormBenchmarksList">
<b>ORM:</b>
</div>
<div class="benchmark-names-list" id="noOrmBenchmarksList">
<b>Non-ORM:</b>
</div>
</div>
<div>
<h2>Test environment</h2>
<div id="testEnv"></div>
</div>
<div>
<h2>Number of repeated tests</h2>
100
</div>
<div>
<h2>Number of records</h2>
<div id="numberOfRecords"></div>
</div>
<!-- TODO: cleanup code -->
<!-- TODO: finish non-orm c# benchmarks -->
<!-- TODO: fix absolute paths in c# (dbCredentials.json and users/courses.json) -->
<div id="results"></div>
<div id="benchmarkCrudAverages"></div>
<script type="module" src="assets/prepareReport.js"></script>
</body>
</html>