mirror of
https://github.com/huggingface/candle.git
synced 2025-06-14 09:57:10 +00:00

* Add the onnx protos. * Move the reading bits. * Install protoc on the CI. * Install protoc on the cuda CI too. * Use clap for the onnx tool. * Tweak the CI protoc install. * Add some simple evalution function. * Add some binary operator support.
7 lines
128 B
Rust
7 lines
128 B
Rust
use std::io::Result;
|
|
|
|
fn main() -> Result<()> {
|
|
prost_build::compile_protos(&["src/onnx.proto3"], &["src/"])?;
|
|
Ok(())
|
|
}
|