Skip to content

Commit

Permalink
🖊️ undo rename so that codspeed can compare
Browse files Browse the repository at this point in the history
  • Loading branch information
jvdd committed Feb 6, 2023
1 parent 50ee420 commit 4f9b767
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions benches/bench_f32.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ fn minmax_f32_random_array_long(c: &mut Criterion) {
}
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
if is_x86_feature_detected!("avx2") {
c.bench_function("avx2_random_long_f32", |b| {
c.bench_function("avx_random_long_f32", |b| {
b.iter(|| unsafe { AVX2::argminmax(black_box(data)) })
});
}
Expand Down Expand Up @@ -68,7 +68,7 @@ fn minmax_f32_random_array_short(c: &mut Criterion) {
}
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
if is_x86_feature_detected!("avx2") {
c.bench_function("avx2_random_short_f32", |b| {
c.bench_function("avx_random_short_f32", |b| {
b.iter(|| unsafe { AVX2::argminmax(black_box(data)) })
});
}
Expand Down Expand Up @@ -109,7 +109,7 @@ fn minmax_f32_worst_case_array_long(c: &mut Criterion) {
}
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
if is_x86_feature_detected!("avx2") {
c.bench_function("avx2_worst_long_f32", |b| {
c.bench_function("avx_worst_long_f32", |b| {
b.iter(|| unsafe { AVX2::argminmax(black_box(data)) })
});
}
Expand Down Expand Up @@ -150,7 +150,7 @@ fn minmax_f32_worst_case_array_short(c: &mut Criterion) {
}
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
if is_x86_feature_detected!("avx2") {
c.bench_function("avx2_worst_short_f32", |b| {
c.bench_function("avx_worst_short_f32", |b| {
b.iter(|| unsafe { AVX2::argminmax(black_box(data)) })
});
}
Expand Down

0 comments on commit 4f9b767

Please sign in to comment.