Skip to main content

etensor_core/backends/cpu/
mod.rs

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