Skip to content

Commit

Permalink
Merge pull request privacy-scaling-explorations#96 from input-output-…
Browse files Browse the repository at this point in the history
…hk/dev-test/parallelize-endoscaling-tests

Parallelize endoscaling tests
  • Loading branch information
iquerejeta authored Jan 25, 2024
2 parents 2f24232 + 9d7e4cc commit fd789d3
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion halo2_gadgets/src/endoscale/chip.rs
Original file line number Diff line number Diff line change
Expand Up @@ -509,11 +509,22 @@ mod tests {
}

#[test]
fn test_endoscale() {
fn pallas_small_endoscaling_works() {
test_endoscale_cycle::<pallas::Affine, vesta::Affine, 8, 64, 8>();
}

#[test]
fn vesta_small_endoscaling_works() {
test_endoscale_cycle::<vesta::Affine, pallas::Affine, 8, 64, 8>();
}

#[test]
fn pallas_large_endoscaling_works() {
test_endoscale_cycle::<pallas::Affine, vesta::Affine, 8, 66, 9>();
}

#[test]
fn vesta_large_endoscaling_works() {
test_endoscale_cycle::<vesta::Affine, pallas::Affine, 8, 66, 9>();
}
}

0 comments on commit fd789d3

Please sign in to comment.