Skip to content

Commit aea4297

Browse files
remove neon backend for performance regression
Signed-off-by: eternal-flame-AD <[email protected]>
1 parent c05a6d4 commit aea4297

File tree

2 files changed

+1
-87
lines changed

2 files changed

+1
-87
lines changed

scrypt/src/block_mix.rs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
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"))] {
2+
if #[cfg(all(target_arch = "wasm32", target_feature = "simd128"))] {
73
mod pivot;
84
mod simd128;
95
pub(crate) use simd128::{scrypt_block_mix, shuffle_in, shuffle_out};

scrypt/src/block_mix/neon.rs

Lines changed: 0 additions & 82 deletions
This file was deleted.

0 commit comments

Comments
 (0)