7 ms·
Don't mean to be rust fanatic or whatever but anyone know of anything similar for rust?
by sourcegrift 7mo ago
Don't mean to be rust fanatic or whatever but anyone know of anything similar for rust?
- embedding-shape 7mo agoNot similar in the way of "Decorate any function and now it's a thread on the GPU", but Candle been pretty neat for experimenting with ML on Rust, and easy to move things between CPU and GPU, more of a library than a DSL though: https://github.com/huggingface/candle https://github.com/huggingface/candle
- steeleduncan 7mo agoI'm not totally sure what it is, but I believe there is something for running Rust code on the GPU easily
- ModernMech 7mo agoYou could use wgpu to replicate this demo. https://wgpu.rs https://wgpu.rs
- notnullorvoid 7mo agoIt seems somewhat similar to rust-gpu https://github.com/Rust-GPU/rust-gpu https://github.com/Rust-GPU/rust-gpu
- wingertge 6mo agoI hate doing self-promotion, but this is basically exactly what CubeCL does. CubeCL is a bit more limited because as a proc macro we can't see any real type info, but it's the closest thing I'm aware of. Other solutions need a bunch of boilerplate and custom (nightly-only) compiler backends.