burn-ir 0.20.1

Intermediate representation for the Burn framework
Documentation
#![cfg_attr(not(feature = "std"), no_std)]
#![warn(missing_docs)]
#![cfg_attr(docsrs, feature(doc_cfg))]

//! Burn intermediate representation.

extern crate alloc;

mod backend;
mod builder;
mod handle;
mod operation;
mod scalar;
mod tensor;

pub use backend::*;
pub use builder::*;
pub use handle::*;
pub use operation::*;
pub use scalar::*;
pub use tensor::*;