concept-collection / matmul-bench
matmul-bench / index.html
17 lines · 661 BBlameHistoryRaw
1<!doctype html>
2<html lang="en">
3 <head>
4 <meta charset="UTF-8" />
5 <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
6 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7 <title>matmul-bench</title>
8 <!-- Adds COOP/COEP via a service worker so SharedArrayBuffer (WASM threads,
9 for the threaded BLIS method) works on GitHub Pages, which can't set
10 response headers. No-op when the server already sends them (dev). -->
11 <script src="%BASE_URL%coi-serviceworker.js"></script>
12 </head>
13 <body>
14 <div id="root"></div>
15 <script type="module" src="/src/main.tsx"></script>
16 </body>
17</html>