Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ workspace = { members = ["fuzz", "app/accelerate", "app"] }

[package]
name = "libblur"
version = "0.19.1"
version = "0.19.2"
edition = "2021"
description = "Fast image blurring in pure Rust"
readme = "./README.md"
Expand Down
2 changes: 1 addition & 1 deletion src/filter2d/mul_spectrum.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ impl SpectrumMultiplier<f32> for f32 {
return neon_mul_spectrum_in_place_f32(value1, other, width, height);
}
}
#[cfg(all(any(target_arch = "x86_64", target_arch = "x86"), feature = "avx"))]
#[cfg(all(target_arch = "x86_64", feature = "avx"))]
{
if std::arch::is_x86_feature_detected!("avx2") {
if std::arch::is_x86_feature_detected!("fma") {
Expand Down