Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable batch verification #21

Merged
merged 4 commits into from
Dec 27, 2024
Merged
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
13 changes: 10 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,18 @@ jobs:
os: [ubuntu-latest, windows-latest, macOS-latest]
include:
- feature_set: basic
features: batch,dev-graph,gadget-traces
features: dev-graph,gadget-traces
- feature_set: all
features: batch,dev-graph,gadget-traces,test-dev-graph,thread-safe-region,sanity-checks,circuit-params
features: dev-graph,gadget-traces,test-dev-graph,thread-safe-region,sanity-checks,circuit-params

steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
override: false
- name: Install libfontconfig1-dev
if: runner.os == 'Linux'
run: sudo apt-get install -y libfontconfig1-dev
- name: Run tests
uses: actions-rs/cargo@v1
with:
Expand All @@ -42,6 +45,7 @@ jobs:
- wasm32-wasi

steps:
- run: sudo apt-get install -y libfontconfig1-dev
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
Expand All @@ -52,13 +56,14 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: build
args: --no-default-features --features batch,dev-graph,gadget-traces --target ${{ matrix.target }}
args: --no-default-features --features dev-graph,gadget-traces --target ${{ matrix.target }}

bitrot:
name: Bitrot check
runs-on: ubuntu-latest

steps:
- run: sudo apt-get install -y libfontconfig1-dev
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
Expand All @@ -75,6 +80,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- run: sudo apt-get install -y libfontconfig1-dev
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
Expand All @@ -97,6 +103,7 @@ jobs:
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- run: sudo apt-get install -y libfontconfig1-dev
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/lints-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
continue-on-error: true

steps:
- run: sudo apt-get install -y libfontconfig1-dev
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/lints-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- run: sudo apt-get install -y libfontconfig1-dev
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
Expand Down
6 changes: 2 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,13 @@ assert_matches = "1.5"
criterion = "0.3"
gumdrop = "0.8"
proptest = "1"
rand_core = { version = "0.6", default-features = false, features = ["getrandom"] }
serde_json = "1"

[target.'cfg(all(target_arch = "wasm32", target_os = "unknown"))'.dev-dependencies]
[target.'cfg(all(target_arch = "wasm32", target_os = "unknown"))'.dependencies]
getrandom = { version = "0.2", features = ["js"] }

[features]
default = ["batch", "bits"]
default = ["bits"]
dev-graph = ["plotters", "tabbycat"]
test-dev-graph = [
"dev-graph",
Expand All @@ -83,7 +82,6 @@ bits = ["halo2curves/bits"]
gadget-traces = ["backtrace"]
thread-safe-region = []
sanity-checks = []
batch = ["rand_core/getrandom"]
circuit-params = []
cost-estimator = ["serde", "serde_derive"]
derive_serde = ["halo2curves/derive_serde"]
Expand Down
32 changes: 15 additions & 17 deletions benches/plonk.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,14 @@ use rand_core::OsRng;
use std::marker::PhantomData;

use criterion::{BenchmarkId, Criterion};
use halo2_proofs::poly::commitment::Guard;
use halo2_proofs::poly::kzg::params::ParamsVerifierKZG;
use halo2_proofs::poly::kzg::{params::ParamsKZG, KZGCommitmentScheme};
use halo2_proofs::transcript::{CircuitTranscript, Transcript};
use halo2_proofs::utils::rational::Rational;
use halo2curves::bn256::Bn256;

fn criterion_benchmark(c: &mut Criterion) {
/// This represents an advice column at a certain row in the ConstraintSystem
#[derive(Copy, Clone, Debug)]
pub struct Variable(Column<Advice>, usize);

#[derive(Clone)]
struct PlonkConfig {
a: Column<Advice>,
Expand Down Expand Up @@ -257,13 +256,13 @@ fn criterion_benchmark(c: &mut Criterion) {
ParamsKZG<bn256::Bn256>,
ProvingKey<bn256::Fr, KZGCommitmentScheme<bn256::Bn256>>,
) {
let params: ParamsKZG<bn256::Bn256> = ParamsKZG::new(k);
let params: ParamsKZG<Bn256> = ParamsKZG::unsafe_setup(k, OsRng);
let empty_circuit: MyCircuit<bn256::Fr> = MyCircuit {
a: Value::unknown(),
k,
};
let vk = keygen_vk(&params, &empty_circuit).expect("keygen_vk should not fail");
let pk = keygen_pk(&params, vk, &empty_circuit).expect("keygen_pk should not fail");
let pk = keygen_pk(vk, &empty_circuit).expect("keygen_pk should not fail");
(params, pk)
}

Expand Down Expand Up @@ -294,20 +293,19 @@ fn criterion_benchmark(c: &mut Criterion) {
}

fn verifier(
params: &ParamsKZG<bn256::Bn256>,
params: &ParamsVerifierKZG<bn256::Bn256>,
vk: &VerifyingKey<bn256::Fr, KZGCommitmentScheme<bn256::Bn256>>,
proof: &[u8],
) {
let mut transcript = CircuitTranscript::init_from_bytes(proof);
assert!(
verify_proof::<bn256::Fr, KZGCommitmentScheme<bn256::Bn256>, _>(
params,
vk,
&[&[]],
&mut transcript
)
.is_ok()
);
assert!(prepare::<bn256::Fr, KZGCommitmentScheme<bn256::Bn256>, _>(
vk,
&[&[]],
&mut transcript
)
.unwrap()
.verify(params)
.is_ok());
}

let k_range = 8..=16;
Expand Down Expand Up @@ -345,7 +343,7 @@ fn criterion_benchmark(c: &mut Criterion) {
BenchmarkId::from_parameter(k),
&(&params, pk.get_vk(), &proof[..]),
|b, &(params, vk, proof)| {
b.iter(|| verifier(params, vk, proof));
b.iter(|| verifier(&params.verifier_params(), vk, proof));
},
);
}
Expand Down
17 changes: 7 additions & 10 deletions examples/circuit-layout.rs
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@
use ff::Field;
use halo2_proofs::utils::rational::Rational;
use halo2_proofs::{
circuit::{Cell, Layouter, Region, SimpleFloorPlanner, Value},
plonk::{Advice, Assigned, Circuit, Column, ConstraintSystem, Error, Fixed, TableColumn},
plonk::{Advice, Circuit, Column, ConstraintSystem, Error, Fixed, TableColumn},
poly::Rotation,
};
use halo2curves::pasta::Fp;
use rand_core::OsRng;
use std::marker::PhantomData;

/// This represents an advice column at a certain row in the ConstraintSystem
#[derive(Copy, Clone, Debug)]
pub struct Variable(Column<Advice>, usize);

#[derive(Clone)]
struct PlonkConfig {
a: Column<Advice>,
Expand All @@ -30,10 +27,10 @@ struct PlonkConfig {
trait StandardCs<FF: Field> {
fn raw_multiply<F>(&self, region: &mut Region<FF>, f: F) -> Result<(Cell, Cell, Cell), Error>
where
F: FnMut() -> Value<(Assigned<FF>, Assigned<FF>, Assigned<FF>)>;
F: FnMut() -> Value<(Rational<FF>, Rational<FF>, Rational<FF>)>;
fn raw_add<F>(&self, region: &mut Region<FF>, f: F) -> Result<(Cell, Cell, Cell), Error>
where
F: FnMut() -> Value<(Assigned<FF>, Assigned<FF>, Assigned<FF>)>;
F: FnMut() -> Value<(Rational<FF>, Rational<FF>, Rational<FF>)>;
fn copy(&self, region: &mut Region<FF>, a: Cell, b: Cell) -> Result<(), Error>;
fn lookup_table(&self, layouter: &mut impl Layouter<FF>, values: &[FF]) -> Result<(), Error>;
}
Expand Down Expand Up @@ -64,7 +61,7 @@ impl<FF: Field> StandardCs<FF> for StandardPlonk<FF> {
mut f: F,
) -> Result<(Cell, Cell, Cell), Error>
where
F: FnMut() -> Value<(Assigned<FF>, Assigned<FF>, Assigned<FF>)>,
F: FnMut() -> Value<(Rational<FF>, Rational<FF>, Rational<FF>)>,
{
let mut value = None;
let lhs = region.assign_advice(
Expand Down Expand Up @@ -101,7 +98,7 @@ impl<FF: Field> StandardCs<FF> for StandardPlonk<FF> {
}
fn raw_add<F>(&self, region: &mut Region<FF>, mut f: F) -> Result<(Cell, Cell, Cell), Error>
where
F: FnMut() -> Value<(Assigned<FF>, Assigned<FF>, Assigned<FF>)>,
F: FnMut() -> Value<(Rational<FF>, Rational<FF>, Rational<FF>)>,
{
let mut value = None;
let lhs = region.assign_advice(
Expand Down Expand Up @@ -247,7 +244,7 @@ impl<F: Field> Circuit<F> for MyCircuit<F> {
layouter.assign_region(
|| format!("region_{i}"),
|mut region| {
let a: Value<Assigned<_>> = self.a.into();
let a: Value<Rational<_>> = self.a.into();
let mut a_squared = Value::unknown();
let (a0, _, c0) = cs.raw_multiply(&mut region, || {
a_squared = a.square();
Expand Down
14 changes: 8 additions & 6 deletions examples/serialization.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ use std::{
};

use ff::Field;
use halo2_proofs::poly::commitment::Guard;
use halo2_proofs::transcript::{CircuitTranscript, Transcript};
use halo2_proofs::{
circuit::{Layouter, SimpleFloorPlanner, Value},
plonk::{
create_proof, keygen_pk, keygen_vk, verify_proof, Advice, Circuit, Column,
ConstraintSystem, Error, Fixed, Instance, ProvingKey,
create_proof, keygen_pk, keygen_vk, prepare, Advice, Circuit, Column, ConstraintSystem,
Error, Fixed, Instance, ProvingKey,
},
poly::{
kzg::{params::ParamsKZG, KZGCommitmentScheme},
Expand Down Expand Up @@ -126,10 +127,10 @@ impl Circuit<Fr> for StandardPlonk {
fn main() {
let k = 4;
let circuit = StandardPlonk(Fr::random(OsRng));
let params = ParamsKZG::<Bn256>::setup(k, OsRng);
let params = ParamsKZG::<Bn256>::unsafe_setup(k, OsRng);
let vk = keygen_vk::<_, KZGCommitmentScheme<Bn256>, _>(&params, &circuit)
.expect("vk should not fail");
let pk = keygen_pk(&params, vk, &circuit).expect("pk should not fail");
let pk = keygen_pk(vk, &circuit).expect("pk should not fail");

let f = File::create("serialization-test.pk").unwrap();
let mut writer = BufWriter::new(f);
Expand Down Expand Up @@ -166,11 +167,12 @@ fn main() {

let mut transcript = CircuitTranscript::<State>::init_from_bytes(&proof[..]);

assert!(verify_proof::<Fr, KZGCommitmentScheme<Bn256>, _>(
&params,
assert!(prepare::<Fr, KZGCommitmentScheme<Bn256>, _>(
pk.get_vk(),
&[instances],
&mut transcript,
)
.unwrap()
.verify(&params.verifier_params())
.is_ok());
}
14 changes: 6 additions & 8 deletions examples/vector-ops-unblinded.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ use blake2b_simd::State;
use std::marker::PhantomData;

use ff::{FromUniformBytes, WithSmallOrderMulGroup};
use halo2_proofs::poly::commitment::Guard;
use halo2_proofs::poly::kzg::{params::ParamsKZG, KZGCommitmentScheme};
use halo2_proofs::transcript::{CircuitTranscript, Hashable, Sampleable, Transcript};
use halo2_proofs::{
Expand Down Expand Up @@ -477,9 +478,9 @@ where
+ Hashable<State>
+ Ord,
{
let params = ParamsKZG::<E>::new(k);
let params: ParamsKZG<E> = ParamsKZG::unsafe_setup(k, OsRng);
let vk = keygen_vk(&params, &circuit).unwrap();
let pk = keygen_pk(&params, vk, &circuit).unwrap();
let pk = keygen_pk(vk, &circuit).unwrap();

let proof = {
let mut transcript = CircuitTranscript::<State>::init();
Expand All @@ -500,12 +501,9 @@ where
let accepted = {
let mut transcript = CircuitTranscript::<State>::init_from_bytes(&proof[..]);

verify_proof::<E::Fr, KZGCommitmentScheme<E>, _>(
&params,
pk.get_vk(),
&[&[&instances]],
&mut transcript,
)
prepare::<E::Fr, KZGCommitmentScheme<E>, _>(pk.get_vk(), &[&[&instances]], &mut transcript)
.unwrap()
.verify(&params.verifier_params())
};

assert_eq!(accepted.is_ok(), expected);
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.76.0
1.77.0
2 changes: 1 addition & 1 deletion src/dev/cost_model.rs
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ fn run_mock_prover_with_fallback<F: Ord + Field + FromUniformBytes<64>, C: Circu
circuit: &C,
instances: Vec<Vec<F>>,
) -> MockProver<F> {
(5..25)
(1..25)
.find_map(|k| {
panic::catch_unwind(AssertUnwindSafe(|| {
MockProver::run(k, circuit, instances.clone()).unwrap()
Expand Down
11 changes: 6 additions & 5 deletions src/dev/graph.rs
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
use ff::Field;
use tabbycat::{AttrList, Edge, GraphBuilder, GraphType, Identity, StmtList};

use crate::utils::rational::Rational;
use crate::{
circuit::Value,
plonk::{
Advice, Any, Assigned, Assignment, Challenge, Circuit, Column, ConstraintSystem, Error,
Fixed, FloorPlanner, Instance, Selector,
Advice, Any, Assignment, Challenge, Circuit, Column, ConstraintSystem, Error, Fixed,
FloorPlanner, Instance, Selector,
},
};

Expand Down Expand Up @@ -123,7 +124,7 @@ impl<F: Field> Assignment<F> for Graph {
) -> Result<(), Error>
where
V: FnOnce() -> Value<VR>,
VR: Into<Assigned<F>>,
VR: Into<Rational<F>>,
A: FnOnce() -> AR,
AR: Into<String>,
{
Expand All @@ -140,7 +141,7 @@ impl<F: Field> Assignment<F> for Graph {
) -> Result<(), Error>
where
V: FnOnce() -> Value<VR>,
VR: Into<Assigned<F>>,
VR: Into<Rational<F>>,
A: FnOnce() -> AR,
AR: Into<String>,
{
Expand All @@ -163,7 +164,7 @@ impl<F: Field> Assignment<F> for Graph {
&mut self,
_: Column<Fixed>,
_: usize,
_: Value<Assigned<F>>,
_: Value<Rational<F>>,
) -> Result<(), Error> {
Ok(())
}
Expand Down
4 changes: 2 additions & 2 deletions src/dev/graph/layout.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ impl CircuitLayout {
cs.constants.clone(),
)
.unwrap();
let (cs, selector_polys) = cs.compress_selectors(layout.selectors);
let (cs, selector_polys) = cs.directly_convert_selectors_to_fixed(layout.selectors.clone());
let non_selector_fixed_columns = cs.num_fixed_columns - selector_polys.len();

// Figure out what order to render the columns in.
Expand All @@ -115,7 +115,7 @@ impl CircuitLayout {
let column_index = |cs: &ConstraintSystem<F>, column: RegionColumn| {
let column: Column<Any> = match column {
RegionColumn::Column(col) => col,
RegionColumn::Selector(selector) => cs.selector_map[selector.0].into(),
RegionColumn::Selector(_) => panic!("We shouldn't have selectors by now"),
};
column.index()
+ match column.column_type() {
Expand Down
Loading
Loading