Skip to content

Commit aa77262

Browse files
committed
Sort benchmarks by runtime
1 parent bd477b6 commit aa77262

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

benches/bench.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ where
3434
});
3535

3636
c.bench_functions(&format!("scalar/{}", name),
37-
vec![scalar_baseline, scalar_full, scalar_raw, scalar_std],
37+
vec![scalar_baseline, scalar_raw, scalar_full, scalar_std],
3838
values);
3939

4040
let vector_baseline = Fun::new(
@@ -84,7 +84,7 @@ where
8484
});
8585

8686
c.bench_functions(&format!("vector/{}", name),
87-
vec![vector_baseline, vector_full, vector_raw, vector_std],
87+
vec![vector_baseline, vector_raw, vector_full, vector_std],
8888
values);
8989
}
9090

0 commit comments

Comments
 (0)