Merge branch 'main' into ivarflakstad/metal-prng

This commit is contained in:
Ivar Flakstad
2024-01-14 17:10:54 +01:00
18 changed files with 608 additions and 57 deletions

View File

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