binius_compute/cpu/
mod.rs

1// Copyright 2025 Irreducible Inc.
2
3//! Reference CPU implementation of a compute layer.
4//!
5//! This implementation is not optimized to use multi-threading or SIMD arithmetic. It is optimized
6//! for readability, used to validate the abstract interfaces and provide algorithmic references
7//! for optimized implementations.
8
9pub mod alloc;
10pub mod layer;
11pub mod memory;
12mod tower_macro;
13
14pub use layer::CpuLayer;
15pub use memory::CpuMemory;