File size: 637 Bytes
149fe2b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>WebGPU Bench</title>
  <style>
    body { font-family: monospace; padding: 20px; background: #1a1a1a; color: #eee; }
    #status { font-size: 18px; margin: 10px 0; }
    #log { white-space: pre-wrap; font-size: 12px; color: #aaa; max-height: 400px; overflow-y: auto; }
    .ok { color: #4caf50; }
    .err { color: #f44336; }
    .warn { color: #ff9800; }
  </style>
</head>
<body>
  <h2>WebGPU LLM Benchmark</h2>
  <div id="status">Initializing...</div>
  <div id="progress"></div>
  <div id="log"></div>
  <script type="module" src="harness.js"></script>
</body>
</html>