Skip to main content

zer_compute/backend/cpu/
mod.rs

1//! CPU backend, pure-CPU implementations of all kernels via `zer-compare`.
2//!
3//! Always compiled, regardless of feature flags.  When neither `cuda` nor
4//! `vulkan` is enabled, or when the GPU is unavailable / the batch is below
5//! the minimum threshold, every call routes through here.
6
7pub mod device;
8pub mod launch;
9
10pub use device::{cpu_estimate_params, CpuDevice, CpuFallbackComparator, CpuFallbackScorer};