refactor: remove sve feature flag

This commit is contained in:
Bobbin Threadbare
2024-01-05 22:06:55 -08:00
committed by Bobbin Threadbare
parent f894ed9cde
commit 457c985a92
4 changed files with 6 additions and 7 deletions

View File

@@ -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;