1//! CPU execution backend.
23pub mod binary;
4pub mod alloc;
5pub mod matmul;
6pub mod reduce;
7pub mod unary;
8pub mod fusion;
910// Re-export the backend struct for easy access in the Dispatcher
11pub use binary::CpuBackend;
12pub use alloc::CpuAllocator;