singe-kernel 0.1.0-alpha.4

Reusable CPU and GPU kernels.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Reusable CPU and GPU kernels.

pub mod audio;
pub mod cpu;
pub mod error;

// `cutile` is currently the only backend.
#[cfg(all(feature = "cuda_13_3", feature = "cutile"))]
pub mod cuda;

pub(crate) mod utility;