Skip to content
Snippets Groups Projects
Verified Commit e5db8474 authored by STEVAN Antoine's avatar STEVAN Antoine :crab:
Browse files

add more curves to linalg

parent 4bd3943c
No related branches found
No related tags found
1 merge request!156add more curves to linalg benchmarks
Pipeline #5614 failed
......@@ -55,13 +55,22 @@ fn main() {
inverse_template::<ark_bls12_381::Fr>(&b.with_name("BLS12-381"), n);
inverse_template::<ark_bn254::Fr>(&b.with_name("BN254"), n);
inverse_template::<ark_pallas::Fr>(&b.with_name("PALLAS"), n);
inverse_template::<ark_ed_on_mnt4_298::Fr>(&b.with_name("ED-MNT4-298"), n);
inverse_template::<ark_cp6_782::Fr>(&b.with_name("CP6-782"), n);
inverse_template::<ark_mnt4_753::Fr>(&b.with_name("MNT4-753"), n);
transpose_template::<ark_bls12_381::Fr>(&b.with_name("BLS12-381"), n);
transpose_template::<ark_bn254::Fr>(&b.with_name("BN254"), n);
transpose_template::<ark_pallas::Fr>(&b.with_name("PALLAS"), n);
transpose_template::<ark_ed_on_mnt4_298::Fr>(&b.with_name("ED-MNT4-298"), n);
transpose_template::<ark_cp6_782::Fr>(&b.with_name("CP6-782"), n);
transpose_template::<ark_mnt4_753::Fr>(&b.with_name("MNT4-753"), n);
mul_template::<ark_bls12_381::Fr>(&b.with_name("BLS12-381"), n);
mul_template::<ark_bn254::Fr>(&b.with_name("BN254"), n);
mul_template::<ark_pallas::Fr>(&b.with_name("PALLAS"), n);
mul_template::<ark_ed_on_mnt4_298::Fr>(&b.with_name("ED-MNT4-298"), n);
mul_template::<ark_cp6_782::Fr>(&b.with_name("CP6-782"), n);
mul_template::<ark_mnt4_753::Fr>(&b.with_name("MNT4-753"), n);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment