-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWebGPUSAXPY.html
More file actions
52 lines (42 loc) · 1.11 KB
/
WebGPUSAXPY.html
File metadata and controls
52 lines (42 loc) · 1.11 KB
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>WebGPU SAXPY Benchmark</title>
<style>
html, body {
overflow: hidden;
}
td {
outline: none;
border-right: 1px solid #eee;
border-bottom: 1px solid #eee;
}
th {
border-right: 1px solid #eee;
}
regular-table {
top: 8em !important;
}
regular-table tr td {
font-size: large;
min-width: 10em;
}
regular-table tr th {
font-size: large;
}
regular-table tr:nth-child(even) td {
background: rgba(0, 0, 0, 0.2);
}
</style>
</head>
<body>
<script src="https://cdn.jsdelivr.net/npm/regular-table"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/regular-table/dist/css/material.css" />
<script type="module" src="WebGPUSAXPY.js"></script>
<h2>WebGPU SAXPY Benchmark</h2>
<p id="gpu-info"></p>
<p id="progress"></p>
<regular-table id="regularTable"></regular-table>
</body>
</html>