Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions blog/2024-11-21-optimizing-matrix-mul/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ draft: true
---

I read the excellent post [Optimizing a WebGPU Matmul Kernel for 1TFLOP+
Performance](https://www.nuss-and-bolts.com/p/optimizing-a-webgpu-matmul-kernel) by Zach
Nussbaum and thought it might be fun to reimplement it with [Rust
GPU](https://Rust-gpu.github.io/).
Performance](https://www.nuss-and-bolts.com/p/optimizing-a-webgpu-matmul-kernel) by
[Zach Nussbaum](https://x.com/zach_nussbaum) and thought it might be fun to reimplement
it with [Rust GPU](https://Rust-gpu.github.io/).

We'll follow Zach's original post closely, comparing and contrasting using Rust vs the
WGSL and Typescript from his post.
Expand All @@ -19,6 +19,9 @@ GPU.

<!-- truncate -->

A big thank you to [Zach](https://x.com/zach_nussbaum) for allowing me to reimplement
his blog post!

:::tip

The complete runnable code can be [found on
Expand Down