etensor-core 0.0.1

The pure Rust tensor math and autograd engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! CPU execution backend.

pub mod binary;
pub mod alloc;
pub mod matmul;
pub mod reduce;
pub mod unary;
pub mod fusion;

// Re-export the backend struct for easy access in the Dispatcher
pub use binary::CpuBackend;
pub use alloc::CpuAllocator;