From dca863bb0942b1c5cdd5f2e099e486e78afd3c69 Mon Sep 17 00:00:00 2001 From: Christian Legnitto Date: Wed, 20 Nov 2024 16:39:08 -0400 Subject: [PATCH] Add link to matmul blog code --- blog/2024-11-21-optimizing-matrix-mul/index.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/blog/2024-11-21-optimizing-matrix-mul/index.md b/blog/2024-11-21-optimizing-matrix-mul/index.md index d094696..ab126ba 100644 --- a/blog/2024-11-21-optimizing-matrix-mul/index.md +++ b/blog/2024-11-21-optimizing-matrix-mul/index.md @@ -8,7 +8,8 @@ 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/). +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. @@ -20,7 +21,8 @@ GPU. :::tip -The complete runnable code can be found on GitHub. +The complete runnable code can be [found on +GitHub](https://github.com/Rust-GPU/rust-gpu.github.io/tree/main/blog/2024-11-21-optimizing-matrix-mul/code). :::