mirror of
https://github.com/arnaucube/miden-crypto.git
synced 2026-01-10 16:11:30 +01:00
refactor: remove sve feature flag
This commit is contained in:
committed by
Bobbin Threadbare
parent
f894ed9cde
commit
457c985a92
@@ -1,4 +1,4 @@
|
||||
#[cfg(all(target_feature = "sve", feature = "sve"))]
|
||||
#[cfg(target_feature = "sve")]
|
||||
pub mod optimized {
|
||||
use crate::hash::rescue::STATE_WIDTH;
|
||||
use crate::Felt;
|
||||
@@ -78,7 +78,7 @@ pub mod optimized {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(not(any(target_feature = "avx2", all(target_feature = "sve", feature = "sve"))))]
|
||||
#[cfg(not(any(target_feature = "avx2", target_feature = "sve")))]
|
||||
pub mod optimized {
|
||||
use crate::hash::rescue::STATE_WIDTH;
|
||||
use crate::Felt;
|
||||
|
||||
Reference in New Issue
Block a user