Skip to content

Commit ab0de36

Browse files
chore: bump multi-stark (#293)
1 parent 570b50c commit ab0de36

8 files changed

Lines changed: 302 additions & 230 deletions

File tree

Benchmarks/Aiur.lean

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ def commitmentParameters : Aiur.CommitmentParameters := {
5757
def friParameters : Aiur.FriParameters := {
5858
logFinalPolyLen := 0
5959
numQueries := 100
60-
proofOfWorkBits := 20
60+
commitProofOfWorkBits := 20
61+
queryProofOfWorkBits := 0
6162
}
6263

6364
def proveE2E (name: Lean.Name) : IO UInt32 := do

Benchmarks/Blake3.lean

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ def commitmentParameters : Aiur.CommitmentParameters := {
1414
def friParameters : Aiur.FriParameters := {
1515
logFinalPolyLen := 0
1616
numQueries := 100
17-
proofOfWorkBits := 20
17+
commitProofOfWorkBits := 20
18+
queryProofOfWorkBits := 0
1819
}
1920

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

0 commit comments

Comments
 (0)