This repository has been archived by the owner on Dec 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to new benchmarking framework (#126)
- Loading branch information
Showing
42 changed files
with
244 additions
and
448 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
use ark_algebra_bench_templates::*; | ||
|
||
use ark_bls12_377::{ | ||
fq::Fq, fq2::Fq2, fr::Fr, Bls12_377, Fq12, G1Projective as G1, G2Projective as G2, | ||
}; | ||
|
||
bench!( | ||
Name = "Bls12_377", | ||
Pairing = Bls12_377, | ||
G1 = G1, | ||
G2 = G2, | ||
ScalarField = Fr, | ||
G1BaseField = Fq, | ||
G2BaseField = Fq2, | ||
TargetField = Fq12, | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
use ark_algebra_bench_templates::*; | ||
|
||
use ark_bls12_381::{ | ||
fq::Fq, fq2::Fq2, fr::Fr, Bls12_381, Fq12, G1Projective as G1, G2Projective as G2, | ||
}; | ||
|
||
bench!( | ||
Name = "Bls12_381", | ||
Pairing = Bls12_381, | ||
G1 = G1, | ||
G2 = G2, | ||
ScalarField = Fr, | ||
G1BaseField = Fq, | ||
G2BaseField = Fq2, | ||
TargetField = Fq12, | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
use ark_algebra_bench_templates::*; | ||
use ark_bn254::{fq::Fq, fq2::Fq2, fr::Fr, Bn254, Fq12, G1Projective as G1, G2Projective as G2}; | ||
|
||
bench!( | ||
Name = "BN254", | ||
Pairing = Bn254, | ||
G1 = G1, | ||
G2 = G2, | ||
ScalarField = Fr, | ||
G1BaseField = Fq, | ||
G2BaseField = Fq2, | ||
TargetField = Fq12, | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
use ark_algebra_bench_templates::*; | ||
|
||
use ark_bw6_761::{ | ||
fq::Fq, fq3::Fq3, fq6::Fq6, fr::Fr, g1::G1Projective as G1, g2::G2Projective as G2, BW6_761, | ||
}; | ||
|
||
bench!( | ||
Name = "BW6_761", | ||
Pairing = BW6_761, | ||
G1 = G1, | ||
G2 = G2, | ||
ScalarField = Fr, | ||
G1BaseField = Fq, | ||
G2BaseField = Fq3, | ||
TargetField = Fq6, | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
use ark_algebra_bench_templates::*; | ||
use ark_cp6_782::{ | ||
fq::Fq, fq3::Fq3, fq6::Fq6, fr::Fr, g1::G1Projective as G1, g2::G2Projective as G2, CP6_782, | ||
}; | ||
|
||
bench!( | ||
Name = "CP6_782", | ||
Pairing = CP6_782, | ||
G1 = G1, | ||
G2 = G2, | ||
ScalarField = Fr, | ||
G1BaseField = Fq, | ||
G2BaseField = Fq3, | ||
TargetField = Fq6, | ||
); |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.