-
- Downloads
benchmark commit step and ark counterparts (dragoon/komodo!63)
this MR adds a benchmark for - the KZG10 trusted setup creating of `ark-poly-commit` - the KZG10 commit of `ark-poly-commit` - our own implement of the commit in `zk::commit` there is also a slight improvement to the previous benchmarking of our `zk::setup`: the degree of the _trusted setup_ is now computed once and for all before the benchmarking loop starts, because it's not what is of interest, let's not benchmark it.
... | ... | @@ -20,6 +20,7 @@ tracing = "0.1.40" |
tracing-subscriber = "0.3.17" | ||
[dev-dependencies] | ||
ark-poly-commit = "0.4.0" | ||
criterion = "0.3" | ||
[[bench]] | ||
... | ... | @@ -33,3 +34,7 @@ harness = false |
[[bench]] | ||
name = "setup" | ||
harness = false | ||
[[bench]] | ||
name = "commit" | ||
harness = false |
benches/commit.rs
0 → 100644
Please register or sign in to comment