Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Benchmarks/Aiur.lean
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ def commitmentParameters : Aiur.CommitmentParameters := {
def friParameters : Aiur.FriParameters := {
logFinalPolyLen := 0
numQueries := 100
proofOfWorkBits := 20
commitProofOfWorkBits := 20
queryProofOfWorkBits := 0
}

def proveE2E (name: Lean.Name) : IO UInt32 := do
Expand Down
5 changes: 2 additions & 3 deletions Benchmarks/Blake3.lean
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ def commitmentParameters : Aiur.CommitmentParameters := {
def friParameters : Aiur.FriParameters := {
logFinalPolyLen := 0
numQueries := 100
proofOfWorkBits := 20
commitProofOfWorkBits := 20
queryProofOfWorkBits := 0
}

def blake3Bench : IO $ Array BenchReport := do
Expand Down Expand Up @@ -60,5 +61,3 @@ def main : IO Unit := do
sumWeights := sumWeights + sizeFloat
let avgThroughput := weightedSum / sumWeights
println! "Average throughput: {avgThroughput.toUSize} bytes/s"


Loading