webgpu-bench / harness.html
abhijitramesh's picture
Initial deploy: one-click bench page
149fe2b verified
<!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>