Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Sep 2, 2024
1 parent 194a456 commit 9bda640
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jolt-core/src/msm/icicle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ mod tests {
.collect();

let gpu_bases = bases.par_iter().map(|base| <G1Projective as Icicle>::from_ark_affine(base)).collect::<Vec<_>>();
let icicle_res = icicle_msm::<G1Projective>(&gpu_bases, &scalars);
let icicle_res = icicle_msm::<G1Projective>(&gpu_bases, &scalars, 256);
let arkworks_res: G1Projective =
ark_VariableBaseMSM::msm(&bases, &scalars).unwrap();
let msm_res: G1Projective = VariableBaseMSM::msm(&bases, &scalars).unwrap();
Expand Down

0 comments on commit 9bda640

Please sign in to comment.