mirror of https://github.com/tracel-ai/burn.git
10 lines
240 B
Rust
10 lines
240 B
Rust
|
fn main() {
|
||
|
// Generate the onnx protobuf files
|
||
|
protobuf_codegen::Codegen::new()
|
||
|
.pure()
|
||
|
.includes(["src"])
|
||
|
.input("src/protos/onnx.proto")
|
||
|
.cargo_out_dir("onnx-protos")
|
||
|
.run_from_script();
|
||
|
}
|