chore: add bench results

This commit is contained in:
Daniel Tehrani
2023-07-31 14:17:10 -07:00
parent abd355d870
commit 9609ece37a

View File

@@ -25,7 +25,13 @@ We use the zero-knowledge sum-check protocol from [Libra](https://eprint.iacr.or
## Benchmarks
TBD
| R1CS constraints | Proof gen | Proving key gen |
| --- | --- | --- |
| 2^12 | 60ms | 83ms |
| 2^15 | 477ms | 85ms |
| 2^18 | 4s | 169ms |
_Measured on a M1 MacBook Pro_
## Future work
- [ ] Employ *self-recursion* techniques from [Vortex](https://eprint.iacr.org/2022/1633.pdf)/[Orion](https://eprint.iacr.org/2022/1010.pdf) to make the proofs smaller.
@@ -35,3 +41,8 @@ TBD
```bash
cargo test
```
## Run benchmarks
```bash
cargo bench
```