Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add avx acceleration to poseidon hash function #155

Merged
merged 13 commits into from
Nov 29, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: add avx acceleration to poseidon hash function
ibmp33 committed Nov 19, 2023
commit e5c380b65800a64ce7c4f986db0228e15888d329
2 changes: 1 addition & 1 deletion algebraic/src/arch/x86_64/avx2_field_gl.rs
Original file line number Diff line number Diff line change
@@ -39,7 +39,7 @@ impl Avx2GoldilocksField {
}
#[inline]
pub fn reduce(x: __m256i, y: __m256i) -> Avx2GoldilocksField {
Self::new(unsafe {reduce128((x,y))})
Self::new(unsafe { reduce128((x, y)) })
}
}

Loading