diff --git a/utils/constmatrix/src/lib.rs b/utils/constmatrix/src/lib.rs index 74ce369..950d01f 100644 --- a/utils/constmatrix/src/lib.rs +++ b/utils/constmatrix/src/lib.rs @@ -132,7 +132,7 @@ impl Matrix { }; for k in 1..N { cfg_if::cfg_if!( - if #[cfg(target_feature="fma")] { + if #[cfg(any(target_feature="fma", target_feature="neon"))] { t = Float::mul_add(lhs[(i, k)], rhs[(k, j)], t); } else { t = t + lhs[(i, k)]*rhs[(k, j)];