We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c05a6d4 commit aea4297Copy full SHA for aea4297
scrypt/src/block_mix.rs
@@ -1,9 +1,5 @@
1
cfg_if::cfg_if! {
2
- if #[cfg(all(target_arch = "aarch64", target_feature = "neon"))] {
3
- mod pivot;
4
- mod neon;
5
- pub(crate) use neon::{scrypt_block_mix, shuffle_in, shuffle_out};
6
- } else if #[cfg(all(target_arch = "wasm32", target_feature = "simd128"))] {
+ if #[cfg(all(target_arch = "wasm32", target_feature = "simd128"))] {
7
mod pivot;
8
mod simd128;
9
pub(crate) use simd128::{scrypt_block_mix, shuffle_in, shuffle_out};
scrypt/src/block_mix/neon.rs
0 commit comments