Skip to main content

lift_tensor/
lib.rs

1//! LIFT Tensor: AI dialect for the LIFT compiler framework.
2//!
3//! Provides 90+ tensor operations covering arithmetic, activations,
4//! normalisation, attention variants, convolutions, pooling, quantisation,
5//! diffusion, GNN, parallelism, fused ops, and gradient operations.
6//! Includes shape inference, FLOP counting, and memory estimation.
7
8pub mod types;
9pub mod ops;
10pub mod dialect;
11pub mod shape;
12
13pub use types::*;
14pub use ops::*;
15pub use dialect::TensorDialect;
16pub use shape::ShapeInference;