cuda_rust_wasm/kernel/
mod.rs

1//! Kernel execution module
2
3pub mod grid;
4pub mod thread;
5pub mod shared_memory;
6pub mod warp;
7
8pub use crate::runtime::kernel::{launch_kernel, LaunchConfig, KernelFunction, ThreadContext};
9pub use crate::runtime::{Grid, Block, Dim3};
10
11// Re-export the kernel_function macro
12pub use crate::kernel_function;