forked from privacy-scaling-explorations/snark-verifier
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat/read pk buffer capacity (privacy-scaling-explorations#24)
* feat: change default `read_pk` buffer capacity to 1MB * feat: add bench for read_pk
- Loading branch information
1 parent
cbf7219
commit 4aba23a
Showing
3 changed files
with
234 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,216 @@ | ||
use ark_std::{end_timer, start_timer}; | ||
use criterion::Criterion; | ||
use criterion::{criterion_group, criterion_main}; | ||
use halo2_base::gates::builder::BASE_CONFIG_PARAMS; | ||
use halo2_base::halo2_proofs; | ||
use halo2_base::utils::fs::gen_srs; | ||
use halo2_proofs::halo2curves as halo2_curves; | ||
use halo2_proofs::{halo2curves::bn256::Bn256, poly::kzg::commitment::ParamsKZG}; | ||
use pprof::criterion::{Output, PProfProfiler}; | ||
use rand::rngs::OsRng; | ||
|
||
use snark_verifier_sdk::halo2::aggregation::AggregationConfigParams; | ||
use snark_verifier_sdk::{ | ||
gen_pk, | ||
halo2::{aggregation::AggregationCircuit, gen_snark_shplonk}, | ||
Snark, | ||
}; | ||
use snark_verifier_sdk::{read_pk_with_capacity, SHPLONK}; | ||
use std::path::Path; | ||
|
||
mod application { | ||
use super::halo2_curves::bn256::Fr; | ||
use super::halo2_proofs::{ | ||
circuit::{Layouter, SimpleFloorPlanner, Value}, | ||
plonk::{Advice, Circuit, Column, ConstraintSystem, Error, Fixed, Instance}, | ||
poly::Rotation, | ||
}; | ||
use rand::RngCore; | ||
use snark_verifier_sdk::CircuitExt; | ||
|
||
#[derive(Clone, Copy)] | ||
pub struct StandardPlonkConfig { | ||
a: Column<Advice>, | ||
b: Column<Advice>, | ||
c: Column<Advice>, | ||
q_a: Column<Fixed>, | ||
q_b: Column<Fixed>, | ||
q_c: Column<Fixed>, | ||
q_ab: Column<Fixed>, | ||
constant: Column<Fixed>, | ||
#[allow(dead_code)] | ||
instance: Column<Instance>, | ||
} | ||
|
||
impl StandardPlonkConfig { | ||
fn configure(meta: &mut ConstraintSystem<Fr>) -> Self { | ||
let [a, b, c] = [(); 3].map(|_| meta.advice_column()); | ||
let [q_a, q_b, q_c, q_ab, constant] = [(); 5].map(|_| meta.fixed_column()); | ||
let instance = meta.instance_column(); | ||
|
||
[a, b, c].map(|column| meta.enable_equality(column)); | ||
|
||
meta.create_gate( | ||
"q_a·a + q_b·b + q_c·c + q_ab·a·b + constant + instance = 0", | ||
|meta| { | ||
let [a, b, c] = | ||
[a, b, c].map(|column| meta.query_advice(column, Rotation::cur())); | ||
let [q_a, q_b, q_c, q_ab, constant] = [q_a, q_b, q_c, q_ab, constant] | ||
.map(|column| meta.query_fixed(column, Rotation::cur())); | ||
let instance = meta.query_instance(instance, Rotation::cur()); | ||
Some( | ||
q_a * a.clone() | ||
+ q_b * b.clone() | ||
+ q_c * c | ||
+ q_ab * a * b | ||
+ constant | ||
+ instance, | ||
) | ||
}, | ||
); | ||
|
||
StandardPlonkConfig { a, b, c, q_a, q_b, q_c, q_ab, constant, instance } | ||
} | ||
} | ||
|
||
#[derive(Clone, Default)] | ||
pub struct StandardPlonk(Fr); | ||
|
||
impl StandardPlonk { | ||
pub fn rand<R: RngCore>(mut rng: R) -> Self { | ||
Self(Fr::from(rng.next_u32() as u64)) | ||
} | ||
} | ||
|
||
impl CircuitExt<Fr> for StandardPlonk { | ||
fn num_instance(&self) -> Vec<usize> { | ||
vec![1] | ||
} | ||
|
||
fn instances(&self) -> Vec<Vec<Fr>> { | ||
vec![vec![self.0]] | ||
} | ||
} | ||
|
||
impl Circuit<Fr> for StandardPlonk { | ||
type Config = StandardPlonkConfig; | ||
type FloorPlanner = SimpleFloorPlanner; | ||
|
||
fn without_witnesses(&self) -> Self { | ||
Self::default() | ||
} | ||
|
||
fn configure(meta: &mut ConstraintSystem<Fr>) -> Self::Config { | ||
meta.set_minimum_degree(4); | ||
StandardPlonkConfig::configure(meta) | ||
} | ||
|
||
fn synthesize( | ||
&self, | ||
config: Self::Config, | ||
mut layouter: impl Layouter<Fr>, | ||
) -> Result<(), Error> { | ||
layouter.assign_region( | ||
|| "", | ||
|mut region| { | ||
#[cfg(feature = "halo2-pse")] | ||
{ | ||
region.assign_advice(|| "", config.a, 0, || Value::known(self.0))?; | ||
region.assign_fixed(|| "", config.q_a, 0, || Value::known(-Fr::one()))?; | ||
region.assign_advice( | ||
|| "", | ||
config.a, | ||
1, | ||
|| Value::known(-Fr::from(5u64)), | ||
)?; | ||
for (idx, column) in (1..).zip([ | ||
config.q_a, | ||
config.q_b, | ||
config.q_c, | ||
config.q_ab, | ||
config.constant, | ||
]) { | ||
region.assign_fixed( | ||
|| "", | ||
column, | ||
1, | ||
|| Value::known(Fr::from(idx as u64)), | ||
)?; | ||
} | ||
let a = | ||
region.assign_advice(|| "", config.a, 2, || Value::known(Fr::one()))?; | ||
a.copy_advice(|| "", &mut region, config.b, 3)?; | ||
a.copy_advice(|| "", &mut region, config.c, 4)?; | ||
} | ||
#[cfg(feature = "halo2-axiom")] | ||
{ | ||
region.assign_advice(config.a, 0, Value::known(self.0)); | ||
region.assign_fixed(config.q_a, 0, -Fr::one()); | ||
region.assign_advice(config.a, 1, Value::known(-Fr::from(5u64))); | ||
for (idx, column) in (1..).zip([ | ||
config.q_a, | ||
config.q_b, | ||
config.q_c, | ||
config.q_ab, | ||
config.constant, | ||
]) { | ||
region.assign_fixed(column, 1, Fr::from(idx as u64)); | ||
} | ||
|
||
let a = region.assign_advice(config.a, 2, Value::known(Fr::one())); | ||
a.copy_advice(&mut region, config.b, 3); | ||
a.copy_advice(&mut region, config.c, 4); | ||
} | ||
|
||
Ok(()) | ||
}, | ||
) | ||
} | ||
} | ||
} | ||
|
||
fn gen_application_snark(params: &ParamsKZG<Bn256>) -> Snark { | ||
let circuit = application::StandardPlonk::rand(OsRng); | ||
|
||
let pk = gen_pk(params, &circuit, Some(Path::new("examples/app.pk"))); | ||
gen_snark_shplonk(params, &pk, circuit, Some(Path::new("examples/app.snark"))) | ||
} | ||
|
||
fn bench(c: &mut Criterion) { | ||
let path = "./configs/example_evm_accumulator.json"; | ||
let params_app = gen_srs(8); | ||
|
||
let snarks = [(); 3].map(|_| gen_application_snark(¶ms_app)); | ||
let agg_config = AggregationConfigParams::from_path(path); | ||
BASE_CONFIG_PARAMS.with(|params| *params.borrow_mut() = agg_config.into()); | ||
let params = gen_srs(agg_config.degree); | ||
|
||
let agg_circuit = AggregationCircuit::keygen::<SHPLONK>(¶ms, snarks); | ||
|
||
let start0 = start_timer!(|| "gen vk & pk"); | ||
gen_pk(¶ms, &agg_circuit, Some(Path::new("examples/agg.pk"))); | ||
end_timer!(start0); | ||
|
||
let mut group = c.benchmark_group("read-pk"); | ||
group.sample_size(10); | ||
group.bench_with_input("1mb", &(1024 * 1024), |b, &c| { | ||
b.iter(|| read_pk_with_capacity::<AggregationCircuit>(c, "examples/agg.pk")) | ||
}); | ||
group.bench_with_input("10mb", &(10 * 1024 * 1024), |b, &c| { | ||
b.iter(|| read_pk_with_capacity::<AggregationCircuit>(c, "examples/agg.pk")) | ||
}); | ||
group.bench_with_input("100mb", &(100 * 1024 * 1024), |b, &c| { | ||
b.iter(|| read_pk_with_capacity::<AggregationCircuit>(c, "examples/agg.pk")) | ||
}); | ||
group.bench_with_input("1gb", &(1024 * 1024 * 1024), |b, &c| { | ||
b.iter(|| read_pk_with_capacity::<AggregationCircuit>(c, "examples/agg.pk")) | ||
}); | ||
group.finish(); | ||
} | ||
|
||
criterion_group! { | ||
name = benches; | ||
config = Criterion::default().with_profiler(PProfProfiler::new(10, Output::Flamegraph(None))); | ||
targets = bench | ||
} | ||
criterion_main!(benches); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters