nimbus-eth2/benchmarks/bench_bls_sig_agggregation.nim

126 lines
4.1 KiB
Nim
Raw Normal View History

2018-10-27 13:00:14 +00:00
import
./bench_common,
2018-10-27 13:39:45 +00:00
milagro_crypto,
nimcrypto, endians, sequtils, times, strformat,
random
2018-10-27 13:00:14 +00:00
func attestation_signed_data(
fork_version: int,
slot: int64,
shard_id: int16,
parent_hashes: seq[array[32, byte]],
shard_block_hash: array[32, byte],
justified_slot: int64
): MDigest[256]=
var ctx: blake2_512
ctx.init()
var be_slot: array[8, byte]
bigEndian64(be_slot[0].addr, slot.unsafeAddr)
ctx.update be_slot
let size_p_hashes = uint parent_hashes.len * sizeof(array[32, byte])
ctx.update(cast[ptr byte](parent_hashes[0].unsafeAddr), size_p_hashes)
var be_shard_id: array[2, byte]
bigEndian16(be_shard_id.addr, shard_id.unsafeAddr)
ctx.update be_shard_id
ctx.update shard_block_hash
var be_justified_slot: array[8, byte]
bigEndian64(be_justified_slot[0].addr, justified_slot.unsafeAddr)
ctx.update be_justified_slot
result.data[0 ..< 32] = ctx.finish().data.toOpenArray(0, 31)
ctx.clear()
2018-10-27 13:39:45 +00:00
proc randBytes32(): array[32, byte] =
for b in result.mitems:
b = byte rand(0..255)
2018-10-27 15:58:36 +00:00
proc main(nb_samples: Natural) =
2018-10-27 13:39:45 +00:00
warmup()
randomize(42) # Random seed for reproducibility
#####################
# Randomize block and attestation parameters
# so that compiler does not optimize them away
let
2018-10-27 15:58:36 +00:00
fork_version = rand(1 .. 10)
2018-10-27 13:39:45 +00:00
num_validators = rand(128 .. 1024)
num_parent_hashes = rand(2 .. 16)
justified_slot = rand(4096)
slot = rand(4096 .. 4096 + 256) # 256 slots = 1.1 hour
2018-10-27 15:58:36 +00:00
shard_id = int16 rand(high(int16))
2018-10-27 13:39:45 +00:00
parent_hashes = newSeqWith(num_parent_hashes, randBytes32())
shard_block_hash = randBytes32()
echo "\n#### Block parameters"
echo &"Number of validators: {num_validators:>64}"
echo &"Number of block parent hashes: {num_parent_hashes:>64}"
2018-10-27 15:58:36 +00:00
echo &"Fork version: {fork_version:>64}"
2018-10-27 13:39:45 +00:00
echo &"Slot: {slot:>64}"
echo &"Shard_id: {shard_id:>64}"
echo &"Parent_hash[0]: {parent_hashes[0].toHex:>64}"
echo &"Shard_block_hash: {shard_block_hash.toHex:>64}"
echo &"justified_slot: {justified_slot:>64}"
#####################
var start = cpuTime()
let secret_public_keypairs = newSeqWith(num_validators, newKeyPair())
var stop = cpuTime()
2018-10-27 15:58:36 +00:00
echo '\n'
echo "#### Message, crypto keys and signatures"
echo &"{num_validators} secret and public keys pairs generated in {stop - start :>4.3f} s"
echo &"Throughput: {num_validators.float / (stop - start) :>4.3f} kps/s (key pairs/second)"
echo '\n'
start = cpuTime()
let msg = attestation_signed_data(
fork_version,
slot,
shard_id,
parent_hashes,
shard_block_hash,
justified_slot
)
stop = cpuTime()
echo &"Message generated in {(stop - start) * 1_000 :>4.3f} ms"
echo '\n'
var pubkey_sig_pairs: tuple[pubkeys: seq[VerKey], signatures: seq[Signature]]
start = cpuTime()
for kp in secret_public_keypairs:
# Note that message is first passed through
# Blake2 384 at the moment
pubkey_sig_pairs.pubkeys.add kp.verkey
pubkey_sig_pairs.signatures.add kp.sigkey.signMessage(msg.data) # toOpenArray?
stop = cpuTime()
echo &"{num_validators} public key and message signature pairs generated in {stop - start :>4.3f} s"
echo &"Throughput: {num_validators.float / (stop - start) :>4.3f} kps/s (keysig pairs/second)"
### Bench stuck in ECP2 multiplication at the moment
# echo '\n'
# echo "#### Benchmark: public keys aggregation"
# var agg_pubkey: AggregatedVerKey
# bench "Benchmarking public key aggregation", agg_pubkey:
# agg_pubkey = initAggregatedKey(pubkey_sig_pairs.pubkeys)
2018-10-27 15:58:36 +00:00
echo '\n'
echo "#### Benchmark: signature aggregation"
var agg_sig: AggregatedSignature
bench "Benchmarking signature aggregation", agg_sig:
2018-10-27 15:58:36 +00:00
agg_sig = initAggregatedSignature(pubkey_sig_pairs)
# echo '\n'
# echo "#### Benchmark: message verification"
# var verif: bool
# bench "Benchmarking message verification", verif:
# verif = agg_sig.verifyMessage(msg.data, agg_pubkey)
2018-10-27 13:39:45 +00:00
when isMainModule:
main(100)