onnx-ir 0.19.0

ONNX-IR is a pure Rust library for parsing ONNX models into an intermediate representation that can be used to generate code for various ML/DL frameworks
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[macro_use]
extern crate derive_new;

mod coalesce;
mod from_onnx;
pub mod ir;
pub mod node;
mod node_remap;
mod proto_conversion;
mod protos;
mod rank_inference;
pub mod util;

pub use from_onnx::convert_constant_value;
pub use from_onnx::element_type_from_proto;
pub use from_onnx::parse_onnx;
pub use ir::*;