proof-aggregation/codex-plonky2-circuits/README.md

57 lines
2.1 KiB
Markdown
Raw Normal View History

2024-10-07 08:36:11 +00:00
# Codex Plonky2 Circuits
WARNING: This is a work-in-progress prototype, and has not received careful code review. This implementation is NOT ready for production use.
This crate is an implementation of the [codex storage proofs circuits](https://github.com/codex-storage/codex-storage-proofs-circuits) for the plonky2 proof system.
2024-10-15 12:33:02 +00:00
## Code organization
- [`merkle_safe`](./src/merkle_tree/merkle_safe.rs) is the implementation of "safe" merkle tree used in codex, consistent with the one [here](https://github.com/codex-storage/nim-codex/blob/master/codex/merkletree/merkletree.nim).
2024-11-05 11:57:49 +00:00
- [`merkle_circuit`](./src/circuits/merkle_circuit) is the Plonky2 Circuit implementation of "safe" merkle tree above.
2024-10-15 12:33:02 +00:00
2024-10-18 10:45:31 +00:00
- [`sample_cells`](./src/circuits/sample_cells.rs) is the Plonky2 Circuit implementation for sampling cells in dataset merkle tree.
- [`params`](./src/circuits/params.rs) is the parameters used in the circuits.
- [`utils`](./src/circuits/utils.rs) contains helper functions.
2024-10-15 12:33:02 +00:00
## Usage
TODO!
2024-10-07 08:36:11 +00:00
## Benchmarks
2024-10-15 12:33:02 +00:00
In here we show the preliminary benchmarks of codex storage proofs circuits.
### Running benchmarks
To run the benchmarks for safe merkle tree circuit, you can use the following command:
```bash
cargo bench --bench safe_circuit
```
To run the benchmarks for proving cells circuit, you can use the following command:
2024-10-18 10:45:31 +00:00
Note: make sure to adjust the parameters as need in [`params`](./src/circuits/params.rs)
2024-10-15 12:33:02 +00:00
```bash
2024-10-15 13:53:18 +00:00
cargo bench --bench prove_cells
2024-10-15 12:33:02 +00:00
```
2024-10-18 10:45:31 +00:00
To run the benchmarks for sampling circuit, you can use the following command:
Note: make sure to adjust the parameters as need in [`params`](./src/circuits/params.rs)
2024-10-15 12:33:02 +00:00
2024-10-18 10:45:31 +00:00
```bash
cargo bench --bench sample_cells
```
2024-10-15 12:33:02 +00:00
2024-10-18 10:45:31 +00:00
### Results
Benchmark results for proving 10 cells (10 samples) in a Slot Merkle tree with max depth 16 with
the small tree (block tree) is of depth 5 so 32 cells in each block. Cell data size is 2048 bytes (256 field elements)
2024-10-15 12:33:02 +00:00
2024-10-18 10:45:31 +00:00
| Operation | Time (ms) |
|-----------|-----------|
| **Build** | 34.4 ms |
| **Prove** | 50.3 ms |
| **Verify**| 2.4 ms |
2024-10-15 12:33:02 +00:00
2024-10-18 10:45:31 +00:00
Circuit size: 2<sup>10</sup> gates
2024-10-15 12:33:02 +00:00
2024-10-18 10:45:31 +00:00
Proof size: 116,008 bytes