2020-03-21 01:31:31 +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/extension_fields,
|
2020-03-21 01:31:31 +00:00
|
|
|
|
# Helpers
|
|
|
|
|
../helpers/static_for,
|
2023-01-12 19:25:57 +00:00
|
|
|
|
./bench_fields_template
|
2020-03-21 01:31:31 +00:00
|
|
|
|
|
|
|
|
|
# ############################################################
|
|
|
|
|
#
|
2020-04-09 12:28:01 +00:00
|
|
|
|
# Benchmark of 𝔽p6
|
2020-03-21 01:31:31 +00:00
|
|
|
|
#
|
|
|
|
|
# ############################################################
|
|
|
|
|
|
|
|
|
|
|
2020-09-21 21:24:00 +00:00
|
|
|
|
const Iters = 100_000
|
2020-03-21 01:31:31 +00:00
|
|
|
|
const InvIters = 1000
|
|
|
|
|
const AvailableCurves = [
|
2020-03-21 12:05:58 +00:00
|
|
|
|
# Pairing-Friendly curves
|
2020-09-27 07:15:14 +00:00
|
|
|
|
BN254_Nogami,
|
2020-04-12 01:01:50 +00:00
|
|
|
|
BN254_Snarks,
|
2020-03-21 12:05:58 +00:00
|
|
|
|
BLS12_377,
|
2020-09-27 11:13:45 +00:00
|
|
|
|
BLS12_381,
|
2020-03-21 01:31:31 +00:00
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
proc main() =
|
2020-04-15 17:38:02 +00:00
|
|
|
|
separator()
|
2020-03-21 01:31:31 +00:00
|
|
|
|
staticFor i, 0, AvailableCurves.len:
|
|
|
|
|
const curve = AvailableCurves[i]
|
2020-03-21 18:03:57 +00:00
|
|
|
|
addBench(Fp6[curve], Iters)
|
|
|
|
|
subBench(Fp6[curve], Iters)
|
|
|
|
|
negBench(Fp6[curve], Iters)
|
2022-02-20 19:15:20 +00:00
|
|
|
|
smallSeparator()
|
2020-03-21 18:03:57 +00:00
|
|
|
|
mulBench(Fp6[curve], Iters)
|
2020-03-21 01:31:31 +00:00
|
|
|
|
sqrBench(Fp6[curve], Iters)
|
2022-02-20 19:15:20 +00:00
|
|
|
|
smallSeparator()
|
2022-08-14 07:48:10 +00:00
|
|
|
|
mul2xUnrBench(Fp6[curve], Iters)
|
|
|
|
|
sqr2xUnrBench(Fp6[curve], Iters)
|
|
|
|
|
rdc2xBench(Fp6[curve], Iters)
|
2022-02-20 19:15:20 +00:00
|
|
|
|
smallSeparator()
|
2020-03-21 22:47:43 +00:00
|
|
|
|
invBench(Fp6[curve], InvIters)
|
2020-04-15 17:38:02 +00:00
|
|
|
|
separator()
|
2020-03-21 01:31:31 +00:00
|
|
|
|
|
|
|
|
|
main()
|
2020-07-24 20:02:30 +00:00
|
|
|
|
notes()
|