Skip to content

Commit

Permalink
Add vector-matrix product case to wasm GEMM benchmark
Browse files Browse the repository at this point in the history
  • Loading branch information
robertknight committed Mar 25, 2024
1 parent 8047a52 commit 7be2109
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tools/benchmarks/wasm-gemm.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ const cases = [
{ m: 512, n: 512, k: 512 }, // Square
{ m: 128, n: 2048, k: 512 }, // Wide
{ m: 2048, n: 128, k: 512 }, // Tall
{ m: 1, n: 4096, k: 512 }, // Vector
];

function logResult(engine, elapsedMs, m, n, k, iters) {
Expand Down

0 comments on commit 7be2109

Please sign in to comment.