webnn-graph 0.3.0

Simple DSL for WebNN graphs
Documentation
1
2
3
4
5
6
7
// Re-export ONNX protos from webnn-onnx-utils to ensure type compatibility
pub mod onnx {
    pub use webnn_onnx_utils::protos::onnx::*;

    // Type alias for compatibility with old code expecting TensorProto_DataType
    pub use tensor_proto::DataType as TensorProto_DataType;
}