106 lines
3.0 KiB
Nim
106 lines
3.0 KiB
Nim
|
import std/[sequtils, strformat, os, options, importutils]
|
||
|
import std/[times, os, strutils, terminal]
|
||
|
|
||
|
import pkg/questionable
|
||
|
import pkg/questionable/results
|
||
|
import pkg/datastore
|
||
|
|
||
|
import pkg/codex/[rng, stores, merkletree, codextypes, slots]
|
||
|
import pkg/codex/utils/[json, poseidon2digest]
|
||
|
import pkg/codex/slots/[builder, sampler/utils, backends/helpers]
|
||
|
import pkg/constantine/math/[arithmetic, io/io_bigints, io/io_fields]
|
||
|
|
||
|
import ./utils
|
||
|
import ./create_circuits
|
||
|
|
||
|
type CircuitFiles* = object
|
||
|
r1cs*: string
|
||
|
wasm*: string
|
||
|
zkey*: string
|
||
|
inputs*: string
|
||
|
|
||
|
proc runArkCircom(args: CircuitArgs, files: CircuitFiles, benchmarkLoops: int) =
|
||
|
echo "Loading sample proof..."
|
||
|
var
|
||
|
inputData = files.inputs.readFile()
|
||
|
inputJson = !JsonNode.parse(inputData)
|
||
|
proofInputs = Poseidon2Hash.jsonToProofInput(inputJson)
|
||
|
circom = CircomCompat.init(
|
||
|
files.r1cs,
|
||
|
files.wasm,
|
||
|
files.zkey,
|
||
|
slotDepth = args.depth,
|
||
|
numSamples = args.nsamples,
|
||
|
)
|
||
|
defer:
|
||
|
circom.release() # this comes from the rust FFI
|
||
|
|
||
|
echo "Sample proof loaded..."
|
||
|
echo "Proving..."
|
||
|
|
||
|
let nameArgs = getCircuitBenchStr(args)
|
||
|
var proof: CircomProof
|
||
|
benchmark fmt"prover-{nameArgs}", benchmarkLoops:
|
||
|
proof = circom.prove(proofInputs).tryGet
|
||
|
|
||
|
var verRes: bool
|
||
|
benchmark fmt"verify-{nameArgs}", benchmarkLoops:
|
||
|
verRes = circom.verify(proof, proofInputs).tryGet
|
||
|
echo "verify result: ", verRes
|
||
|
|
||
|
proc runRapidSnark(args: CircuitArgs, files: CircuitFiles, benchmarkLoops: int) =
|
||
|
# time rapidsnark ${CIRCUIT_MAIN}.zkey witness.wtns proof.json public.json
|
||
|
|
||
|
echo "generating the witness..."
|
||
|
## TODO
|
||
|
|
||
|
proc runBenchmark(args: CircuitArgs, env: CircuitEnv, benchmarkLoops: int) =
|
||
|
## execute benchmarks given a set of args
|
||
|
## will create a folder in `benchmarks/circuit_bench_$(args)`
|
||
|
##
|
||
|
|
||
|
let env = createCircuit(args, env)
|
||
|
|
||
|
## TODO: copy over testcircomcompat proving
|
||
|
let files = CircuitFiles(
|
||
|
r1cs: env.dir / fmt"{env.name}.r1cs",
|
||
|
wasm: env.dir / fmt"{env.name}.wasm",
|
||
|
zkey: env.dir / fmt"{env.name}.zkey",
|
||
|
inputs: env.dir / fmt"input.json",
|
||
|
)
|
||
|
|
||
|
runArkCircom(args, files, benchmarkLoops)
|
||
|
|
||
|
proc runAllBenchmarks*() =
|
||
|
echo "Running benchmark"
|
||
|
# setup()
|
||
|
var env = CircuitEnv.default()
|
||
|
env.check()
|
||
|
|
||
|
var args = CircuitArgs(
|
||
|
depth: 32, # maximum depth of the slot tree
|
||
|
maxslots: 256, # maximum number of slots
|
||
|
cellsize: 2048, # cell size in bytes
|
||
|
blocksize: 65536, # block size in bytes
|
||
|
nsamples: 1, # number of samples to prove
|
||
|
entropy: 1234567, # external randomness
|
||
|
seed: 12345, # seed for creating fake data
|
||
|
nslots: 11, # number of slots in the dataset
|
||
|
index: 3, # which slot we prove (0..NSLOTS-1)
|
||
|
ncells: 512, # number of cells in this slot
|
||
|
)
|
||
|
|
||
|
let
|
||
|
numberSamples = 3
|
||
|
benchmarkLoops = 5
|
||
|
|
||
|
for i in 1 .. numberSamples:
|
||
|
args.nsamples = i
|
||
|
stdout.styledWriteLine(fgYellow, "\nbenchmarking args: ", $args)
|
||
|
runBenchmark(args, env, benchmarkLoops)
|
||
|
|
||
|
printBenchMarkSummaries()
|
||
|
|
||
|
when isMainModule:
|
||
|
runAllBenchmarks()
|