2021-02-14 13:24:48 +00:00
|
|
|
# Constantine
|
|
|
|
# Copyright (c) 2018-2019 Status Research & Development GmbH
|
|
|
|
# Copyright (c) 2020-Present Mamy André-Ratsimbazafy
|
|
|
|
# Licensed and distributed under either of
|
|
|
|
# * MIT license (license terms in the root directory or at http://opensource.org/licenses/MIT).
|
|
|
|
# * Apache v2 license (license terms in the root directory or at http://www.apache.org/licenses/LICENSE-2.0).
|
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
|
|
|
|
import
|
|
|
|
# Internals
|
2022-02-21 00:04:53 +00:00
|
|
|
../constantine/backend/config/curves,
|
|
|
|
../constantine/backend/arithmetic,
|
|
|
|
../constantine/backend/towers,
|
2021-02-14 13:24:48 +00:00
|
|
|
# Helpers
|
|
|
|
../helpers/static_for,
|
|
|
|
./bench_summary_template,
|
|
|
|
# Standard library
|
|
|
|
std/strutils
|
|
|
|
|
|
|
|
# ############################################################
|
|
|
|
#
|
|
|
|
# Benchmark of pairings
|
|
|
|
# for BLS12-381
|
|
|
|
#
|
|
|
|
# ############################################################
|
|
|
|
|
|
|
|
|
|
|
|
const Iters = 5000
|
|
|
|
const AvailableCurves = [
|
|
|
|
BLS12_381,
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
proc main() =
|
|
|
|
separator()
|
|
|
|
staticFor i, 0, AvailableCurves.len:
|
|
|
|
const curve = AvailableCurves[i]
|
|
|
|
|
2022-02-20 19:15:20 +00:00
|
|
|
|
2021-02-14 13:24:48 +00:00
|
|
|
mulBench(Fr[curve], Iters)
|
|
|
|
sqrBench(Fr[curve], Iters)
|
|
|
|
separator()
|
|
|
|
mulBench(Fp[curve], Iters)
|
|
|
|
sqrBench(Fp[curve], Iters)
|
|
|
|
invBench(Fp[curve], Iters)
|
|
|
|
sqrtBench(Fp[curve], Iters)
|
|
|
|
separator()
|
|
|
|
mulBench(Fp2[curve], Iters)
|
|
|
|
sqrBench(Fp2[curve], Iters)
|
|
|
|
invBench(Fp2[curve], Iters)
|
|
|
|
sqrtBench(Fp2[curve], Iters)
|
|
|
|
separator()
|
2022-02-20 19:15:20 +00:00
|
|
|
mulBench(Fp12[curve], Iters)
|
|
|
|
sqrBench(Fp12[curve], Iters)
|
|
|
|
invBench(Fp12[curve], Iters)
|
|
|
|
separator()
|
2022-01-01 18:17:04 +00:00
|
|
|
addBench(ECP_ShortW_Prj[Fp[curve], G1], Iters)
|
|
|
|
mixedAddBench(ECP_ShortW_Prj[Fp[curve], G1], Iters)
|
|
|
|
doublingBench(ECP_ShortW_Prj[Fp[curve], G1], Iters)
|
2021-02-14 13:24:48 +00:00
|
|
|
separator()
|
2022-01-01 18:17:04 +00:00
|
|
|
addBench(ECP_ShortW_Jac[Fp[curve], G1], Iters)
|
|
|
|
mixedAddBench(ECP_ShortW_Jac[Fp[curve], G1], Iters)
|
|
|
|
doublingBench(ECP_ShortW_Jac[Fp[curve], G1], Iters)
|
2021-02-14 13:24:48 +00:00
|
|
|
separator()
|
2022-01-01 18:17:04 +00:00
|
|
|
addBench(ECP_ShortW_Prj[Fp2[curve], G2], Iters)
|
|
|
|
mixedAddBench(ECP_ShortW_Prj[Fp2[curve], G2], Iters)
|
|
|
|
doublingBench(ECP_ShortW_Prj[Fp2[curve], G2], Iters)
|
2021-02-14 13:24:48 +00:00
|
|
|
separator()
|
2022-01-01 18:17:04 +00:00
|
|
|
addBench(ECP_ShortW_Jac[Fp2[curve], G2], Iters)
|
|
|
|
mixedAddBench(ECP_ShortW_Jac[Fp2[curve], G2], Iters)
|
|
|
|
doublingBench(ECP_ShortW_Jac[Fp2[curve], G2], Iters)
|
2021-02-14 13:24:48 +00:00
|
|
|
separator()
|
2022-02-20 19:15:20 +00:00
|
|
|
scalarMulBench(ECP_ShortW_Prj[Fp[curve], G1], Iters)
|
|
|
|
scalarMulBench(ECP_ShortW_Jac[Fp[curve], G1], Iters)
|
|
|
|
scalarMulBench(ECP_ShortW_Prj[Fp2[curve], G2], Iters)
|
|
|
|
scalarMulBench(ECP_ShortW_Jac[Fp2[curve], G2], Iters)
|
2021-02-14 13:24:48 +00:00
|
|
|
separator()
|
|
|
|
millerLoopBLS12Bench(curve, Iters)
|
|
|
|
finalExpBLS12Bench(curve, Iters)
|
|
|
|
pairingBLS12Bench(curve, Iters)
|
|
|
|
separator()
|
2021-08-13 20:07:26 +00:00
|
|
|
hashToCurveBLS12381G2Bench(Iters)
|
|
|
|
separator()
|
2021-02-14 13:24:48 +00:00
|
|
|
|
|
|
|
main()
|
|
|
|
notes()
|