burn_ir/lib.rs
1#![cfg_attr(not(feature = "std"), no_std)]
2#![warn(missing_docs)]
3#![cfg_attr(docsrs, feature(doc_cfg))]
4
5//! Burn intermediate representation.
6
7extern crate alloc;
8
9mod backend;
10mod builder;
11mod handle;
12mod operation;
13mod scalar;
14mod tensor;
15
16pub use backend::*;
17pub use builder::*;
18pub use handle::*;
19pub use operation::*;
20pub use scalar::*;
21pub use tensor::*;