NVIDIA quietly shipped CUDA-Oxide on May 7, 2026, and it pulled 323 points on Hacker News inside a day. This is the first NVIDIA-sanctioned path to writing CUDA kernels in pure Rust — no DSLs, no FFI bindings, no awkward wrappers. You write safe, idiomatic Rust, and a custom rustc back-end emits straight to NVIDIA PTX.
What CUDA-Oxide actually is
An experimental compiler from NVlabs, currently v0.1 alpha. The whole thing builds with cargo — no CMake, no tablegen, no C++ toolchain anywhere in the chain. Under the hood is Pliron, a Rust-native MLIR-like IR that NVIDIA built specifically for this project. You write SIMT GPU kernels the same way you’d write any Rust crate, and out comes PTX ready to run on NVIDIA hardware.
Why AI/ML devs care
The AI infra world has been migrating to Rust for two years — tokenizers, inference servers, training runtimes, vector databases. The one place Rust couldn’t go was the GPU kernel itself, which meant living with CUDA C++ at the bottom of every stack. CUDA-Oxide cracks that ceiling open. It’s rough — alpha is alpha — but the fact that NVIDIA is shipping this officially, not as a community side project, signals where kernel writing is heading.
How to use the SDK
Open source on GitHub under NVlabs, Apache/MIT-style license. Clone the repo, run cargo, and you have a working Rust-to-PTX pipeline. Today’s realistic use cases: small experimental kernels, learning, contributing back upstream. Not production-grade yet — expect missing features and rough edges. But for anyone betting their stack on Rust, this is the door cracking open.
You Might Also Like
- Barracuda one dev Wrote a Cuda Compiler From Scratch so amd Gpus Could Join the Party
- Tropes fyi llm Writing Tropes a Brutally Honest Catalog of how ai Gives Itself Away
- Insforge Hits 1 on Product Hunt and 3600 Github Stars is This What Agent Native Backends Look Like
- Metas First Post Acquisition Move Manus my Computer Puts an ai Agent on Your Desktop
- A 1 Trillion Parameter ai Model Appeared on Openrouter With no Name Attached so who Built Hunter Alpha

Leave a comment