Skip to main content

sapient_backends_cpu/
lib.rs

1#![allow(
2    clippy::get_first,
3    clippy::too_many_arguments,
4    clippy::excessive_precision,
5    clippy::needless_borrows_for_generic_args
6)]
7
8//! CPU execution backend for SAPIENT.
9
10pub mod backend;
11pub mod kernels;
12pub mod pool;
13
14pub use backend::CpuBackend;
15pub use pool::PoolAllocator;