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

add more curves to linalg benchmarks (!156)

## results
> :bulb: **Note**
>
> using the improved plots from !153

![inverse](/uploads/9368bc1b23a8f8772a05b8c8bab85b96/inverse.png)
![mul](/uploads/62b9633f47360c01ffbc92fdf15afcbe/mul.png)
![transpose](/uploads/c6892261d27306037a0a2a614f93d584/transpose.png)
parent 1395283f
No related branches found
No related tags found
1 merge request!156add more curves to linalg benchmarks
Pipeline #5624 passed
...@@ -56,15 +56,24 @@ fn main() { ...@@ -56,15 +56,24 @@ fn main() {
inverse_template::<ark_bn254::Fr>(&b.with_name("BN254"), n); inverse_template::<ark_bn254::Fr>(&b.with_name("BN254"), n);
inverse_template::<ark_pallas::Fr>(&b.with_name("PALLAS"), n); inverse_template::<ark_pallas::Fr>(&b.with_name("PALLAS"), n);
inverse_template::<benchmarks::fields::Fq128>(&b.with_name("small"), n); inverse_template::<benchmarks::fields::Fq128>(&b.with_name("small"), 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_bls12_381::Fr>(&b.with_name("BLS12-381"), n);
transpose_template::<ark_bn254::Fr>(&b.with_name("BN254"), n); transpose_template::<ark_bn254::Fr>(&b.with_name("BN254"), n);
transpose_template::<ark_pallas::Fr>(&b.with_name("PALLAS"), n); transpose_template::<ark_pallas::Fr>(&b.with_name("PALLAS"), n);
transpose_template::<benchmarks::fields::Fq128>(&b.with_name("small"), n); transpose_template::<benchmarks::fields::Fq128>(&b.with_name("small"), 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_bls12_381::Fr>(&b.with_name("BLS12-381"), n);
mul_template::<ark_bn254::Fr>(&b.with_name("BN254"), n); mul_template::<ark_bn254::Fr>(&b.with_name("BN254"), n);
mul_template::<ark_pallas::Fr>(&b.with_name("PALLAS"), n); mul_template::<ark_pallas::Fr>(&b.with_name("PALLAS"), n);
mul_template::<benchmarks::fields::Fq128>(&b.with_name("small"), n); mul_template::<benchmarks::fields::Fq128>(&b.with_name("small"), 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