Skip to main content

webnn_graph/
lib.rs

1pub mod ast;
2pub mod debug;
3pub mod external_weights;
4pub use external_weights::{resolve_external_weights, WeightResolveError};
5
6pub mod emit_html;
7pub mod emit_js;
8pub mod onnx;
9pub mod parser;
10pub mod protos;
11pub mod serialize;
12pub mod validate;
13pub mod weights;
14pub mod weights_io;