ejmahler / RustFFT

RustFFT is a high-performance FFT library written in pure Rust.
Apache License 2.0
678 stars 47 forks source link

is_aarch64_feature_detected!("neon") #91

Closed lukaz-vaultree-com closed 2 years ago

lukaz-vaultree-com commented 2 years ago

if is_aarch64_feature_detected!("neon") {

does not compile, I had to change it to

if std::arch::is_aarch64_feature_detected!("neon") {

:)

lukaz-vaultree-com commented 2 years ago

macOS Apple Silicon

HEnquist commented 2 years ago

Please see https://github.com/ejmahler/RustFFT/pull/84