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
.. / constantine / config / curves ,
2020-03-22 12:24:37 +00:00
.. / constantine / arithmetic ,
2020-06-17 20:44:52 +00:00
.. / constantine / io / io_bigints ,
2020-03-21 01:31:31 +00:00
# Helpers
.. / helpers / static_for ,
. / bench_fields_template ,
# Standard library
std / strutils
# ############################################################
#
# Benchmark of 𝔽 p
#
# ############################################################
const Iters = 1_000_000
2020-06-17 20:44:52 +00:00
const ExponentIters = 1000
2020-03-21 01:31:31 +00:00
const AvailableCurves = [
2020-06-17 20:44:52 +00:00
# P224,
# BN254_Nogami,
2020-04-12 01:01:50 +00:00
BN254_Snarks ,
2020-06-17 20:44:52 +00:00
# Curve25519,
# P256,
# Secp256k1,
# BLS12_377,
2020-03-21 12:05:58 +00:00
BLS12_381 ,
2020-06-17 20:44:52 +00:00
# BN446,
# FKM12_447,
# BLS12_461,
# BN462
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 ]
addBench ( Fp [ curve ] , Iters )
subBench ( Fp [ curve ] , Iters )
negBench ( Fp [ curve ] , Iters )
mulBench ( Fp [ curve ] , Iters )
sqrBench ( Fp [ curve ] , Iters )
2020-06-17 20:44:52 +00:00
invBench ( Fp [ curve ] , ExponentIters )
powFermatInversionBench ( Fp [ curve ] , ExponentIters )
sqrtBench ( Fp [ curve ] , ExponentIters )
# Exponentiation by a "secret" of size ~the curve order
powBench ( Fp [ curve ] , ExponentIters )
powUnsafeBench ( Fp [ curve ] , ExponentIters )
2020-04-15 17:38:02 +00:00
separator ( )
2020-03-21 01:31:31 +00:00
main ( )
echo " Notes: "
2020-04-14 00:05:42 +00:00
echo " - GCC is significantly slower than Clang on multiprecision arithmetic. "
echo " - The simplest operations might be optimized away by the compiler. "
echo " - Fast Squaring and Fast Multiplication are possible if there are spare bits in the prime representation (i.e. the prime uses 254 bits out of 256 bits) "