by Ambix on 6/6/23, 9:40 PM with 2 comments
Why is this? Why Rust is not loved there?
[0] https://docs.nvidia.com/cuda/
[1] https://github.com/ROCm-Developer-Tools/HIP
by thesuperbigfrog on 6/6/23, 10:09 PM
History and demand.
CUDA is about 15 years old. MPI and similar parallel computing APIs are even older.
C, C++, and Fortran have been the "goto" programming languages for parallel and scientific computing for decades.
Rust is a relative newcomer that does not have enough demand yet to mandate CUDA APIs. It probably will some day.
Another concern is the number of decades-mature libraries that are used in parallel computing domains. It seems much more likely that any Rust support will initially be Rust wrappers around C or C++ APIs rather than native Rust implementations.
Some projects for Rust on CUDA are in progress:
by ActorNightly on 6/7/23, 4:37 PM