Skip to content
Snippets Groups Projects

Setup for CI

Merged rarbore2 requested to merge ci into main
3 files
+ 22
1
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -9,6 +9,12 @@ fn main() {
let mut a = vec![0.0, 1.0, 0.0, 2.0, 0.0, 3.0, 0.0, 4.0];
let mut b = vec![0.0, 5.0, 0.0, 6.0, 0.0, 7.0, 0.0, 8.0];
let c = unsafe { dot(a.as_mut_ptr(), b.as_mut_ptr(), 8).await };
println!("{}", c,);
println!("{}", c);
assert_eq!(c, 70.0);
});
}
#[test]
fn dot_test() {
main();
}
Loading