2020-04-15 17:38:02 +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-27 00:49:08 +00:00
|
|
|
../constantine/math/config/curves,
|
|
|
|
../constantine/math/arithmetic,
|
|
|
|
../constantine/math/elliptic/[
|
2020-10-01 22:01:09 +00:00
|
|
|
ec_shortweierstrass_projective,
|
2023-02-16 11:45:05 +00:00
|
|
|
ec_shortweierstrass_jacobian,
|
|
|
|
ec_shortweierstrass_jacobian_extended],
|
2020-04-15 17:38:02 +00:00
|
|
|
# Helpers
|
2023-01-12 19:25:57 +00:00
|
|
|
./bench_elliptic_template
|
2020-04-15 17:38:02 +00:00
|
|
|
|
|
|
|
# ############################################################
|
|
|
|
#
|
|
|
|
# Benchmark of the G1 group of
|
|
|
|
# Short Weierstrass elliptic curves
|
|
|
|
# in (homogeneous) projective coordinates
|
|
|
|
#
|
|
|
|
# ############################################################
|
|
|
|
|
|
|
|
|
2020-09-21 21:24:00 +00:00
|
|
|
const Iters = 10_000
|
|
|
|
const MulIters = 100
|
2020-04-15 17:38:02 +00:00
|
|
|
const AvailableCurves = [
|
|
|
|
# P224,
|
2020-10-10 16:53:48 +00:00
|
|
|
BN254_Nogami,
|
2020-04-15 17:38:02 +00:00
|
|
|
BN254_Snarks,
|
2022-02-27 00:49:08 +00:00
|
|
|
# Edwards25519,
|
2020-04-15 17:38:02 +00:00
|
|
|
# P256,
|
|
|
|
# Secp256k1,
|
2022-04-26 22:58:48 +00:00
|
|
|
Pallas,
|
|
|
|
Vesta,
|
2020-09-27 07:15:14 +00:00
|
|
|
BLS12_377,
|
2020-04-15 17:38:02 +00:00
|
|
|
BLS12_381,
|
|
|
|
]
|
|
|
|
|
|
|
|
proc main() =
|
|
|
|
separator()
|
|
|
|
staticFor i, 0, AvailableCurves.len:
|
|
|
|
const curve = AvailableCurves[i]
|
2022-01-01 18:17:04 +00:00
|
|
|
addBench(ECP_ShortW_Prj[Fp[curve], G1], Iters)
|
|
|
|
addBench(ECP_ShortW_Jac[Fp[curve], G1], Iters)
|
2023-02-16 11:45:05 +00:00
|
|
|
addBench(ECP_ShortW_JacExt[Fp[curve], G1], Iters)
|
2022-01-01 18:17:04 +00:00
|
|
|
mixedAddBench(ECP_ShortW_Prj[Fp[curve], G1], Iters)
|
|
|
|
mixedAddBench(ECP_ShortW_Jac[Fp[curve], G1], Iters)
|
2023-02-16 11:45:05 +00:00
|
|
|
mixedAddBench(ECP_ShortW_JacExt[Fp[curve], G1], Iters)
|
2022-01-01 18:17:04 +00:00
|
|
|
doublingBench(ECP_ShortW_Prj[Fp[curve], G1], Iters)
|
|
|
|
doublingBench(ECP_ShortW_Jac[Fp[curve], G1], Iters)
|
2023-02-16 11:45:05 +00:00
|
|
|
doublingBench(ECP_ShortW_JacExt[Fp[curve], G1], Iters)
|
2020-10-01 22:01:09 +00:00
|
|
|
separator()
|
2022-01-01 18:17:04 +00:00
|
|
|
affFromProjBench(ECP_ShortW_Prj[Fp[curve], G1], MulIters)
|
|
|
|
affFromJacBench(ECP_ShortW_Jac[Fp[curve], G1], MulIters)
|
2020-04-15 20:23:46 +00:00
|
|
|
separator()
|
2023-02-16 11:45:05 +00:00
|
|
|
for numPoints in [10, 100, 1000, 10000]:
|
|
|
|
let batchIters = max(1, Iters div numPoints)
|
|
|
|
affFromProjBatchBench(ECP_ShortW_Prj[Fp[curve], G1], numPoints, useBatching = false, batchIters)
|
2020-06-04 18:37:29 +00:00
|
|
|
separator()
|
2023-02-16 11:45:05 +00:00
|
|
|
for numPoints in [10, 100, 1000, 10000]:
|
|
|
|
let batchIters = max(1, Iters div numPoints)
|
|
|
|
affFromProjBatchBench(ECP_ShortW_Prj[Fp[curve], G1], numPoints, useBatching = true, batchIters)
|
2023-02-07 15:27:53 +00:00
|
|
|
separator()
|
2023-02-16 11:45:05 +00:00
|
|
|
for numPoints in [10, 100, 1000, 10000]:
|
|
|
|
let batchIters = max(1, Iters div numPoints)
|
|
|
|
affFromJacBatchBench(ECP_ShortW_Jac[Fp[curve], G1], numPoints, useBatching = false, batchIters)
|
2020-08-24 22:02:30 +00:00
|
|
|
separator()
|
2023-02-16 11:45:05 +00:00
|
|
|
for numPoints in [10, 100, 1000, 10000]:
|
|
|
|
let batchIters = max(1, Iters div numPoints)
|
|
|
|
affFromJacBatchBench(ECP_ShortW_Jac[Fp[curve], G1], numPoints, useBatching = true, batchIters)
|
2020-08-24 22:02:30 +00:00
|
|
|
separator()
|
|
|
|
separator()
|
2020-04-15 17:38:02 +00:00
|
|
|
|
|
|
|
main()
|
2020-07-24 20:02:30 +00:00
|
|
|
notes()
|