1//! Architecture-specific runtime support modules.
23/// CPU runtime: coroutine-based cooperative scheduling and parallel dispatch.
4#[cfg(feature = "cpu")]
5pub mod cpu;
6/// CUDA intrinsics for thread and block indexing.
7#[cfg(target_arch = "nvptx64")]
8pub mod cuda;