-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: use AVX2 instructions whenever available
- Loading branch information
Showing
5 changed files
with
442 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
#[cfg(all(target_feature = "sve", feature = "sve"))] | ||
pub mod optimized { | ||
use crate::hash::rescue::STATE_WIDTH; | ||
use crate::Felt; | ||
|
||
mod ffi { | ||
#[link(name = "rpo_sve", kind = "static")] | ||
extern "C" { | ||
pub fn add_constants_and_apply_sbox( | ||
state: *mut std::ffi::c_ulong, | ||
constants: *const std::ffi::c_ulong, | ||
) -> bool; | ||
pub fn add_constants_and_apply_inv_sbox( | ||
state: *mut std::ffi::c_ulong, | ||
constants: *const std::ffi::c_ulong, | ||
) -> bool; | ||
} | ||
} | ||
|
||
#[inline(always)] | ||
pub fn add_constants_and_apply_sbox( | ||
state: &mut [Felt; STATE_WIDTH], | ||
ark: &[Felt; STATE_WIDTH], | ||
) -> bool { | ||
unsafe { | ||
ffi::add_constants_and_apply_sbox( | ||
state.as_mut_ptr() as *mut u64, | ||
ark.as_ptr() as *const u64, | ||
) | ||
} | ||
} | ||
|
||
#[inline(always)] | ||
pub fn add_constants_and_apply_inv_sbox( | ||
state: &mut [Felt; STATE_WIDTH], | ||
ark: &[Felt; STATE_WIDTH], | ||
) -> bool { | ||
unsafe { | ||
ffi::add_constants_and_apply_inv_sbox( | ||
state.as_mut_ptr() as *mut u64, | ||
ark.as_ptr() as *const u64, | ||
) | ||
} | ||
} | ||
} | ||
|
||
#[cfg(target_feature = "avx2")] | ||
mod x86_64_avx2; | ||
|
||
#[cfg(target_feature = "avx2")] | ||
pub mod optimized { | ||
use super::x86_64_avx2::{apply_inv_sbox, apply_sbox}; | ||
use crate::hash::rescue::{add_constants, STATE_WIDTH}; | ||
use crate::Felt; | ||
|
||
#[inline(always)] | ||
pub fn add_constants_and_apply_sbox( | ||
state: &mut [Felt; STATE_WIDTH], | ||
ark: &[Felt; STATE_WIDTH], | ||
) -> bool { | ||
add_constants(state, ark); | ||
unsafe { | ||
apply_sbox(std::mem::transmute(state)); | ||
} | ||
true | ||
} | ||
|
||
#[inline(always)] | ||
pub fn add_constants_and_apply_inv_sbox( | ||
state: &mut [Felt; STATE_WIDTH], | ||
ark: &[Felt; STATE_WIDTH], | ||
) -> bool { | ||
add_constants(state, ark); | ||
unsafe { | ||
apply_inv_sbox(std::mem::transmute(state)); | ||
} | ||
true | ||
} | ||
} | ||
|
||
#[cfg(not(any(target_feature = "avx2", all(target_feature = "sve", feature = "sve"))))] | ||
pub mod optimized { | ||
use crate::hash::rescue::STATE_WIDTH; | ||
use crate::Felt; | ||
|
||
#[inline(always)] | ||
pub fn add_constants_and_apply_sbox( | ||
_state: &mut [Felt; STATE_WIDTH], | ||
_ark: &[Felt; STATE_WIDTH], | ||
) -> bool { | ||
false | ||
} | ||
|
||
#[inline(always)] | ||
pub fn add_constants_and_apply_inv_sbox( | ||
_state: &mut [Felt; STATE_WIDTH], | ||
_ark: &[Felt; STATE_WIDTH], | ||
) -> bool { | ||
false | ||
} | ||
} |
Oops, something went wrong.