-
Aaron Councilman authoredAaron Councilman authored
build.rs 214 B
use juno_build::JunoCompiler;
fn main() {
JunoCompiler::new()
.file_in_src("matmul.jn")
.unwrap()
.schedule_in_src("matmul.sch")
.unwrap()
.build()
.unwrap();
}