From 45323248b6a5b2b82a05949d2bcfd47f7be93154 Mon Sep 17 00:00:00 2001 From: Christian Legnitto Date: Fri, 25 Jul 2025 14:33:55 -0400 Subject: [PATCH] Fix link --- blog/2025-07-25-rust-on-every-gpu.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/blog/2025-07-25-rust-on-every-gpu.mdx b/blog/2025-07-25-rust-on-every-gpu.mdx index 95a278a..480bf24 100644 --- a/blog/2025-07-25-rust-on-every-gpu.mdx +++ b/blog/2025-07-25-rust-on-every-gpu.mdx @@ -4,7 +4,7 @@ authors: [LegNeato] tags: ["demo", "cuda"] --- -I've built a [demo](https://github.com/LegNeato/rust-gpu-chimera-demo) of a single +I've built a [demo](https://github.com/LegNeato/rust-gpu-chimera) of a single shared Rust codebase that runs on every major GPU platform: - **CUDA** for NVIDIA GPUs @@ -19,7 +19,7 @@ or kernel languages are used. -The code is available on [GitHub](https://github.com/LegNeato/rust-gpu-chimera-demo). +The code is available on [GitHub](https://github.com/LegNeato/rust-gpu-chimera). ## Background @@ -59,7 +59,7 @@ Previously, these projects were siloed as they were started by different people different times with different goals. As a maintainer of Rust GPU and Rust CUDA and a contributor to `naga`, I have been working to bring them closer together. -This [demo](https://github.com/LegNeato/rust-gpu-chimera-demo) is the first time all +This [demo](https://github.com/LegNeato/rust-gpu-chimera) is the first time all major GPU backends run from a single Rust codebase without a ton of hacks. It's the culmination of hard work from many contributors and shows that cross-platform GPU compute in Rust is now possible.