mirror of
https://github.com/codex-storage/constantine.git
synced 2025-01-12 12:04:07 +00:00
9ac9862401
* Pairing with affine: align API to BLST and Gurvy and common use-case. * Implement multi-pairing / aggregate verif for BLS12-381 (+2% pairing perf) * Generalize the optimized miller loop for single pairing * Immplement the miller loop addchain for BLS12-377 * Miller addition chain for BN254-Nogami * no Miller adchain for BN254-Snarks * Update the line test with new tower https://github.com/mratsim/constantine/pull/153 * Somewhat sparse for Fp2 M-Twist * Implement line by line multiplication for Fp12 D-Twist * Somewhat sparse Mul for Fp12 D-Twist * Finish the sparse and somewhat sparse multiplications
56 lines
1.6 KiB
Nim
56 lines
1.6 KiB
Nim
# 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,
|
|
../constantine/arithmetic,
|
|
../constantine/towers,
|
|
# Helpers
|
|
../helpers/static_for,
|
|
./bench_pairing_template,
|
|
# Standard library
|
|
std/strutils
|
|
|
|
# ############################################################
|
|
#
|
|
# Benchmark of pairings
|
|
# for BN254-Nogami
|
|
#
|
|
# ############################################################
|
|
|
|
|
|
const Iters = 1000
|
|
const AvailableCurves = [
|
|
BN254_Nogami,
|
|
]
|
|
|
|
proc main() =
|
|
separator()
|
|
staticFor i, 0, AvailableCurves.len:
|
|
const curve = AvailableCurves[i]
|
|
lineDoubleBench(curve, Iters)
|
|
lineAddBench(curve, Iters)
|
|
mulFp12byLine_xyz000_Bench(curve, Iters)
|
|
mulLinebyLine_xyz000_Bench(curve, Iters)
|
|
mulFp12by_abcdefghij00_Bench(curve, Iters)
|
|
mulFp12_by_2lines_v1_xyz000_Bench(curve, Iters)
|
|
mulFp12_by_2lines_v2_xyz000_Bench(curve, Iters)
|
|
separator()
|
|
finalExpEasyBench(curve, Iters)
|
|
finalExpHardBNBench(curve, Iters)
|
|
separator()
|
|
millerLoopBNBench(curve, Iters)
|
|
finalExpBNBench(curve, Iters)
|
|
separator()
|
|
pairingBNBench(curve, Iters)
|
|
separator()
|
|
|
|
main()
|
|
notes()
|