sapient-core 0.1.11

Core types, tensor, DType, buffer, and error handling for SAPIENT
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! SAPIENT core — re-exports for all primary types.

pub mod buffer;
pub mod dtype;
pub mod error;
pub mod shape;
pub mod tensor;

pub use buffer::{Buffer, BufferHandle, CpuBuffer};
pub use dtype::DType;
pub use error::{Result, SapientError};
pub use shape::Shape;
pub use tensor::Tensor;