Merge branch 'main' into ivarflakstad/metal-fill

This commit is contained in:
Ivar Flakstad
2024-01-18 11:16:25 +01:00
53 changed files with 7514 additions and 584 deletions

View File

@ -1,4 +1,9 @@
mod benchmarks;
use criterion::criterion_main;
criterion_main!(benchmarks::matmul::benches, benchmarks::fill::benches);
criterion_main!(
benchmarks::matmul::benches,
benchmarks::affine::benches,
benchmarks::fill::benches,
benchmarks::where_cond::benches,
);