cuda-rust-wasm 0.1.7

CUDA to Rust transpiler with WebGPU/WASM support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Kernel execution module

pub mod grid;
pub mod thread;
pub mod shared_memory;
pub mod warp;

pub use crate::runtime::kernel::{launch_kernel, LaunchConfig, KernelFunction, ThreadContext};
pub use crate::runtime::{Grid, Block, Dim3};

// Re-export the kernel_function macro
pub use crate::kernel_function;