From 568b399d103e9d91d29754d1f0510df3b949695b Mon Sep 17 00:00:00 2001
From: Aaron Councilman <aaronjc4@illinois.edu>
Date: Mon, 24 Feb 2025 15:29:07 -0600
Subject: [PATCH] Use cpu schedule

---
 juno_samples/matmul/build.rs | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/juno_samples/matmul/build.rs b/juno_samples/matmul/build.rs
index 0be838c6..d2813388 100644
--- a/juno_samples/matmul/build.rs
+++ b/juno_samples/matmul/build.rs
@@ -6,6 +6,8 @@ fn main() {
         JunoCompiler::new()
             .file_in_src("matmul.jn")
             .unwrap()
+            .schedule_in_src("cpu.sch")
+            .unwrap()
             .build()
             .unwrap();
     }
-- 
GitLab