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 memory;