Skip to content

Commit

Permalink
Remove :: from benchmark names to not confuse CodSpeed
Browse files Browse the repository at this point in the history
  • Loading branch information
Ogeon committed Sep 1, 2023
1 parent c178edc commit fdb833a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion palette/benches/cie.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ fn cie_conversion(c: &mut Criterion) {
});
#[cfg(feature = "wide")]
group.bench_with_input(
"linsrgb to xyz - wide::f32x8",
"linsrgb to xyz - wide f32x8",
&wide_colormine,
|b, wide_colormine| {
b.iter(|| {
Expand Down
10 changes: 5 additions & 5 deletions palette/benches/rgb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ fn rgb_conversion(c: &mut Criterion) {
});
#[cfg(feature = "wide")]
group.bench_with_input(
"rgb to linsrgb - wide::f32x8",
"rgb to linsrgb - wide f32x8",
&wide_colormine,
|b, wide_colormine| {
b.iter(|| {
Expand All @@ -101,7 +101,7 @@ fn rgb_conversion(c: &mut Criterion) {
});
#[cfg(feature = "wide")]
group.bench_with_input(
"rgb to hsl - wide::f32x8",
"rgb to hsl - wide f32x8",
&wide_colormine,
|b, wide_colormine| {
b.iter(|| {
Expand All @@ -127,7 +127,7 @@ fn rgb_conversion(c: &mut Criterion) {
});
#[cfg(feature = "wide")]
group.bench_with_input(
"rgb to hsv - wide::f32x8",
"rgb to hsv - wide f32x8",
&wide_colormine,
|b, wide_colormine| {
b.iter(|| {
Expand Down Expand Up @@ -167,7 +167,7 @@ fn rgb_conversion(c: &mut Criterion) {
});
#[cfg(feature = "wide")]
group.bench_with_input(
"xyz to linsrgb - wide::f32x8",
"xyz to linsrgb - wide f32x8",
&wide_colormine,
|b, wide_colormine| {
b.iter(|| {
Expand Down Expand Up @@ -242,7 +242,7 @@ fn rgb_conversion(c: &mut Criterion) {
});
#[cfg(feature = "wide")]
group.bench_with_input(
"linsrgb to rgb - wide::f32x8",
"linsrgb to rgb - wide f32x8",
&wide_colormine,
|b, wide_colormine| {
b.iter(|| {
Expand Down

0 comments on commit fdb833a

Please sign in to comment.