Introduce workload markings

This commit is contained in:
2024-02-25 23:04:56 +01:00
parent a13de61081
commit 4285189e17
13 changed files with 130 additions and 124 deletions

View File

@@ -24,10 +24,10 @@ pub extern "C" fn main() {
let a = SVector::<F16x1, ROWS>::zeros();
let b = SVector::<F16x1, ROWS>::zeros();
for _ in 0..10 {
let c = a + b;
core::hint::black_box(c);
}
pim_os::m5op::exit(0);
let c = a + b;
core::hint::black_box(c);
pim_os::m5op::exit(0);
writeln!(Uart0, "Done").unwrap();
}