Made for learning how to parallelize computations in the GPU using CUDA, in Rust, via the cc crate.
The source code will contain documented examples of use, growing in complexity, aimed at a final objective of parallelize a Fast Fourier Transform algorithm.
- NVIDIA CUDA-Samples An NVIDIA repository with a lot of CUDA examples. It can be useful to run deviceQuery and get informatio about our GPU capabilites
- HowTo: Compile CUDA with nvcc, and link to Rust through FFI: It is an example repository which can be useful to start using CUDA and rust together. Use it to check if your GPU is correctly configured.