Skip to content
Open
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
537 changes: 283 additions & 254 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ Learn more about Ziren at [docs.zkm.io](https://docs.zkm.io).
## Acknowledgements
Ziren draws inspiration from the following projects, which represents the cutting-edge zero-knowledge proof systems.
- [Plonky3](https://github.com/Plonky3/Plonky3): Ziren proving backend is based on Plonky3.
- [SP1](https://github.com/succinctlabs/sp1): Ziren circuit builder, recursion compiler, and precompiles originate from SP1.
- [SP1](https://github.com/succinctlabs/sp1): Ziren circuit builder, recursion compiler, and precompiles originate from SP1.
2 changes: 1 addition & 1 deletion crates/core/executor/src/artifacts/mips_costs.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"U256XU2048Mul": 5849,
"Bn254Fp2MulAssign": 2885,
"CloClz": 46,
"BooleanCircuitGarble": 588,
"Bls12831Fp2AddSubAssign": 2070,
"SyscallInstrs": 80,
"DivRem": 162,
Expand All @@ -17,6 +16,7 @@
"Program": 31,
"Global": 115,
"Secp256k1AddAssign": 4013,
"BooleanCircuitGarble": 588,
"AddSub": 47,
"Jump": 82,
"Bn254FpOpAssign": 704,
Expand Down
1 change: 1 addition & 0 deletions crates/core/machine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ zkm-primitives = { workspace = true }
zkm-core-executor = { workspace = true, default-features = true }
zkm-curves = { workspace = true }

crossbeam-channel = "0.5.12"
rayon = "1.10.0"
rayon-scan = "0.1.1"

Expand Down
Loading