Skip to main content

ringkernel_procint/cuda/
mod.rs

1//! CUDA kernel code generation and execution.
2//!
3//! Transpiles Rust DSL kernels to CUDA and manages GPU execution.
4
5mod codegen;
6mod executor;
7mod types;
8
9pub use codegen::*;
10pub use executor::*;
11pub use types::*;