Skip to content

Latest commit

 

History

History
10 lines (6 loc) · 399 Bytes

README.md

File metadata and controls

10 lines (6 loc) · 399 Bytes

WASM matMul

This repo prototypes matrix multiplication with WASM.

To run the precompiled WASM binary, launch an HTTP server and open localhost:${PORT}/src/main.html. This fetches the binary and runs matmul 50 times. The console outputs performance numbers and memory information.

To modify the WASM source, edit src/main.c, then run:

$ yarn # to install dependencies
$ yarn build