-
Notifications
You must be signed in to change notification settings - Fork 33
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
Feature: Orion PCS Integration #153
base: dev
Are you sure you want to change the base?
Conversation
tonyfloatersu
commented
Nov 21, 2024
•
edited
Loading
edited
- Orion (base field / simd field) impls
- Orion MPI functionality (proof aggregating from different parties)
- MPI environment spin up for a real e2e testing
- integrating PCS into GKR configs
6aba141
to
0fe9dc4
Compare
06038ff
to
0694446
Compare
…y, ignore simd and mpi vars
…s works, need to read test closely
{ | ||
assert_eq!(simd_vec.len() * PackF::PACK_SIZE, Self::PACK_SIZE); | ||
let mut temp: Vec<_> = simd_vec.to_vec(); | ||
temp.reverse(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this for gf2x128
and gf2x64
only? reverse
here is a little confusing.
Signed-off-by: Zhiyong Fang <[email protected]>
fbbf6dc
to
0c35935
Compare
221f781
to
22abffa
Compare
|
||
fn codeword_len(&self) -> usize; | ||
|
||
fn hamming_weight(&self) -> f64; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
From the context, I think this refers to the relative distance
or minimal relative hamming weight/distance
.