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

Feat/batched opening proofs #453

Draft
wants to merge 38 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
499b17e
Opening proof accumulator first pass (accumulate all but r1cs openings)
moodlezoup Aug 12, 2024
3b29ccc
temp
moodlezoup Aug 16, 2024
f461d21
temp
moodlezoup Aug 16, 2024
797aa3a
temp2
moodlezoup Aug 19, 2024
7a28155
very temp
moodlezoup Aug 23, 2024
8ef12d7
some progress
moodlezoup Aug 25, 2024
1f1cb6f
Refactor JoltIn enum
moodlezoup Aug 25, 2024
4d75cd8
temp
moodlezoup Aug 25, 2024
e583c0e
instruction flags
moodlezoup Aug 25, 2024
b7b4c3f
Remove input_range macro
moodlezoup Aug 25, 2024
9598dcf
temp
moodlezoup Aug 26, 2024
08350f8
temp2
moodlezoup Aug 26, 2024
218ca21
Update compute_spartan_Az_Bz_Cz
moodlezoup Aug 26, 2024
50d5d08
Update prove_spartan_quadratic
moodlezoup Aug 26, 2024
472e3c7
Refactor constraint traits
moodlezoup Aug 29, 2024
28a0581
temp (bytecode)
moodlezoup Sep 4, 2024
a3401bb
temp (instruction lookups)
moodlezoup Sep 4, 2024
9c6922e
temp (timestamp range check)
moodlezoup Sep 5, 2024
17aa68f
Sketch out VerifierOpeningAccumulator
moodlezoup Sep 5, 2024
0ff053b
Sketch changes to memory checking traits
moodlezoup Sep 6, 2024
147976b
Migrate to new traits (first pass)
moodlezoup Sep 6, 2024
29539f0
Migrate to new traits (second pass)
moodlezoup Sep 6, 2024
12b2c53
Migrate to new traits (3rd pass)
moodlezoup Sep 6, 2024
16932be
Migrate to new traits (4th pass)
moodlezoup Sep 6, 2024
35cb341
Handle exogenous openings
moodlezoup Sep 11, 2024
398d292
Fill in get_poly_ref implementations
moodlezoup Sep 11, 2024
7ce47f1
temp
moodlezoup Sep 12, 2024
cd87cda
Optimizations
moodlezoup Sep 12, 2024
519ac74
Use many-polynomial-one-point batching before applying sumcheck reduc…
moodlezoup Sep 17, 2024
5b9c10a
Merge branch 'main' into feat/batched-opening-proofs
moodlezoup Sep 17, 2024
45ed9ee
Debugging
moodlezoup Sep 17, 2024
a2f07ce
Improve pretty_fmt
moodlezoup Sep 17, 2024
6db5a96
More debugging
moodlezoup Sep 18, 2024
e041503
Implement reduced opening proof verification
moodlezoup Sep 19, 2024
47c8630
Add Fiat-Shamir transcript comparison functionality for testing
moodlezoup Sep 20, 2024
9917898
Debug batched opening proof verification
moodlezoup Sep 20, 2024
976b262
Disable hyrax tests
moodlezoup Sep 20, 2024
d9a7aca
Patch Surge
moodlezoup Sep 20, 2024
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
92 changes: 46 additions & 46 deletions book/src/how/r1cs_constraints.md
Original file line number Diff line number Diff line change
@@ -1,71 +1,71 @@
# R1CS constraints

Jolt usees R1CS constraints to enforce certain rules of the RISC-V fetch-decode-execute loop
and to ensure
consistency between the proofs for the different modules of Jolt ([instruction lookups](./instruction_lookups.md), [read-write memory](./read_write_memory.md), and [bytecode](./bytecode.md)).
Jolt usees R1CS constraints to enforce certain rules of the RISC-V fetch-decode-execute loop
and to ensure
consistency between the proofs for the different modules of Jolt ([instruction lookups](./instruction_lookups.md), [read-write memory](./read_write_memory.md), and [bytecode](./bytecode.md)).

## Uniformity

Jolt's R1CS is uniform, which means
that the constraint matrices for an entire program are just repeated copies of the constraint
matrices for a single CPU step.
Each step is conceptually simple and involves around 60 constraints and 80 variables.
that the constraint matrices for an entire program are just repeated copies of the constraint
matrices for a single CPU step.
Each step is conceptually simple and involves around 60 constraints and 80 variables.

## Input Variables and constraints

The inputs required for the constraint system for a single CPU step are:
The inputs required for the constraint system for a single CPU step are:

#### Pertaining to bytecode
* Program counters (PCs): this is the only state passed between CPU steps.
* Bytecode read address: the address in the program code read at this step.
* The preprocessed ("5-tuple") representation of the instruction: (`bitflags`, `rs1`, `rs2`, `rd`, `imm`).
* Program counters (PCs): this is the only state passed between CPU steps.
* Bytecode read address: the address in the program code read at this step.
* The preprocessed ("5-tuple") representation of the instruction: (`bitflags`, `rs1`, `rs2`, `rd`, `imm`).

#### Pertaining to read-write memory
* The (starting) RAM address read by the instruction: if the instruction is not a load/store, this is 0.
* The bytes written to or read from memory.

#### Pertaining to instruction lookups
* The chunks of the instruction's operands `x` and `y`.
* The chunks of the instruction's operands `x` and `y`.
* The chunks of the lookup query. These are typically some combination of the operand chunks (e.g. the i-th chunk of the lookup query is often the concatenation of `x_i` and `y_i`).
* The lookup output.
* The lookup output.

### Circuit and instruction flags:
* There are nine circuit flags used to guide the constraints and are dependent only on the opcode of the instruction. These are thus stored as part of the preprocessed bytecode in Jolt.
1. `operand_x_flag`: 0 if the first operand is the value in `rs1` or the `PC`.
2. `operand_y_flag`: 0 if the second operand is the value in `rs2` or the `imm`.
### Circuit and instruction flags:
* There are nine circuit flags used to guide the constraints and are dependent only on the opcode of the instruction. These are thus stored as part of the preprocessed bytecode in Jolt.
1. `operand_x_flag`: 0 if the first operand is the value in `rs1` or the `PC`.
2. `operand_y_flag`: 0 if the second operand is the value in `rs2` or the `imm`.
3. `is_load_instr`
4. `is_store_instr`
5. `is_jump_instr`
6. `is_branch_instr`
7. `if_update_rd_with_lookup_output`: 1 if the lookup output is to be stored in `rd` at the end of the step.
8. `sign_imm_flag`: used in load/store and branch instructions where the instruction is added as constraints.
9. `is_concat`: indicates whether the instruction performs a concat-type lookup.
* Instruction flags: these are the unary bits used to indicate instruction is executed at a given step. There are as many per step as the number of unique instruction lookup tables in Jolt, which is 19.

#### Constraint system

The constraints for a CPU step are detailed in the `get_jolt_matrices()` function in [`constraints.rs`](https://github.com/a16z/jolt/blob/main/jolt-core/src/r1cs/jolt_constraints.rs).

### Reusing commitments

As with most SNARK backends, Spartan requires computing a commitment to the inputs
to the constraint system.
A catch (and an optimization feature) in Jolt is that most of the inputs
are also used as inputs to proofs in the other modules. For example,
the address and values pertaining to the bytecode are used in the bytecode memory-checking proof,
and the lookup chunks, output and flags are used in the instruction lookup proof.
For Jolt to be sound, it must be ensured that the same inputs are fed to all relevant proofs.
We do this by re-using the commitments themselves.
This can be seen in the `format_commitments()` function in the `r1cs/snark` module.
Spartan is adapted to take pre-committed witness variables.

## Exploiting uniformity

The uniformity of the constraint system allows us to heavily optimize both the prover and verifier.
The main changes involved in making this happen are:
- Spartan is modified to only take in the constraint matrices a single step, and the total number of steps. Using this, the prover and verifier can efficiently calculate the multilinear extensions of the full R1CS matrices.
- The commitment format of the witness values is changed to reflect uniformity. All versions of a variable corresponding to each time step is committed together. This affects nearly all variables committed to in Jolt.
- The inputs and witnesses are provided to the constraint system as segments.
- Additional constraints are used to enforce consistency of the state transferred between CPU steps.
7. `if_update_rd_with_lookup_output`: 1 if the lookup output is to be stored in `rd` at the end of the step.
8. `sign_imm_flag`: used in load/store and branch instructions where the instruction is added as constraints.
9. `is_concat`: indicates whether the instruction performs a concat-type lookup.
* Instruction flags: these are the unary bits used to indicate instruction is executed at a given step. There are as many per step as the number of unique instruction lookup tables in Jolt, which is 19.

#### Constraint system

The constraints for a CPU step are detailed in the `get_jolt_matrices()` function in [`constraints.rs`](https://github.com/a16z/jolt/blob/main/jolt-core/src/r1cs/constraints.rs).

### Reusing commitments

As with most SNARK backends, Spartan requires computing a commitment to the inputs
to the constraint system.
A catch (and an optimization feature) in Jolt is that most of the inputs
are also used as inputs to proofs in the other modules. For example,
the address and values pertaining to the bytecode are used in the bytecode memory-checking proof,
and the lookup chunks, output and flags are used in the instruction lookup proof.
For Jolt to be sound, it must be ensured that the same inputs are fed to all relevant proofs.
We do this by re-using the commitments themselves.
This can be seen in the `format_commitments()` function in the `r1cs/snark` module.
Spartan is adapted to take pre-committed witness variables.

## Exploiting uniformity

The uniformity of the constraint system allows us to heavily optimize both the prover and verifier.
The main changes involved in making this happen are:
- Spartan is modified to only take in the constraint matrices a single step, and the total number of steps. Using this, the prover and verifier can efficiently calculate the multilinear extensions of the full R1CS matrices.
- The commitment format of the witness values is changed to reflect uniformity. All versions of a variable corresponding to each time step is committed together. This affects nearly all variables committed to in Jolt.
- The inputs and witnesses are provided to the constraint system as segments.
- Additional constraints are used to enforce consistency of the state transferred between CPU steps.

These changes and their impact on the code are visible in [`spartan.rs`](https://github.com/a16z/jolt/blob/main/jolt-core/src/r1cs/spartan.rs).
3 changes: 2 additions & 1 deletion common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ edition = "2021"
ark-serialize = { version = "0.4.2", features = ["derive"] }
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
strum_macros = "0.25.3"
strum_macros = "0.26.4"
strum = "0.26.3"
syn = { version = "1.0", features = ["full"] }
47 changes: 33 additions & 14 deletions common/src/rv_trace.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ use std::str::FromStr;
use crate::constants::{MEMORY_OPS_PER_INSTRUCTION, RAM_START_ADDRESS, REGISTER_COUNT};
use ark_serialize::{CanonicalDeserialize, CanonicalSerialize};
use serde::{Deserialize, Serialize};
use strum_macros::FromRepr;
use strum::EnumCount;
use strum_macros::{EnumCount as EnumCountMacro, EnumIter, FromRepr};

#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct RVTraceRow {
Expand Down Expand Up @@ -230,7 +231,25 @@ pub struct ELFInstruction {
pub virtual_sequence_remaining: Option<usize>,
}

pub const NUM_CIRCUIT_FLAGS: usize = 12;
#[derive(
Clone, Copy, Debug, PartialEq, Eq, PartialOrd, Hash, Ord, EnumCountMacro, EnumIter, Default,
)]
pub enum CircuitFlags {
#[default] // Need a default so that we can derive EnumIter on `JoltIn`
RS1IsPC,
RS2IsImm,
Load,
Store,
Jump,
Branch,
WriteLookupOutputToRD,
ImmSignBit,
ConcatLookupQueryChunks,
Virtual,
Assert,
DoNotUpdatePC,
}
pub const NUM_CIRCUIT_FLAGS: usize = CircuitFlags::COUNT;

impl ELFInstruction {
#[rustfmt::skip]
Expand All @@ -251,12 +270,12 @@ impl ELFInstruction {

let mut flags = [false; NUM_CIRCUIT_FLAGS];

flags[0] = matches!(
flags[CircuitFlags::RS1IsPC as usize] = matches!(
self.opcode,
RV32IM::JAL | RV32IM::LUI | RV32IM::AUIPC,
);

flags[1] = matches!(
flags[CircuitFlags::RS2IsImm as usize] = matches!(
self.opcode,
RV32IM::ADDI
| RV32IM::XORI
Expand All @@ -272,28 +291,28 @@ impl ELFInstruction {
| RV32IM::JALR,
);

flags[2] = matches!(
flags[CircuitFlags::Load as usize] = matches!(
self.opcode,
RV32IM::LB | RV32IM::LH | RV32IM::LW | RV32IM::LBU | RV32IM::LHU,
);

flags[3] = matches!(
flags[CircuitFlags::Store as usize] = matches!(
self.opcode,
RV32IM::SB | RV32IM::SH | RV32IM::SW,
);

flags[4] = matches!(
flags[CircuitFlags::Jump as usize] = matches!(
self.opcode,
RV32IM::JAL | RV32IM::JALR,
);

flags[5] = matches!(
flags[CircuitFlags::Branch as usize] = matches!(
self.opcode,
RV32IM::BEQ | RV32IM::BNE | RV32IM::BLT | RV32IM::BGE | RV32IM::BLTU | RV32IM::BGEU,
);

// loads, stores, branches, jumps, and asserts do not store the lookup output to rd (they may update rd in other ways)
flags[6] = !matches!(
flags[CircuitFlags::WriteLookupOutputToRD as usize] = !matches!(
self.opcode,
RV32IM::SB
| RV32IM::SH
Expand All @@ -315,9 +334,9 @@ impl ELFInstruction {
);

let mask = 1u32 << 31;
flags[7] = matches!(self.imm, Some(imm) if imm & mask == mask);
flags[CircuitFlags::ImmSignBit as usize] = matches!(self.imm, Some(imm) if imm & mask == mask);

flags[8] = matches!(
flags[CircuitFlags::ConcatLookupQueryChunks as usize] = matches!(
self.opcode,
RV32IM::XOR
| RV32IM::XORI
Expand Down Expand Up @@ -348,9 +367,9 @@ impl ELFInstruction {
| RV32IM::VIRTUAL_ASSERT_VALID_DIV0,
);

flags[9] = self.virtual_sequence_remaining.is_some();
flags[CircuitFlags::Virtual as usize] = self.virtual_sequence_remaining.is_some();

flags[10] = matches!(self.opcode,
flags[CircuitFlags::Assert as usize] = matches!(self.opcode,
RV32IM::VIRTUAL_ASSERT_EQ |
RV32IM::VIRTUAL_ASSERT_LTE |
RV32IM::VIRTUAL_ASSERT_VALID_SIGNED_REMAINDER |
Expand All @@ -361,7 +380,7 @@ impl ELFInstruction {
// All instructions in virtual sequence are mapped from the same
// ELF address. Thus if an instruction is virtual (and not the last one
// in its sequence), then we should *not* update the PC.
flags[11] = match self.virtual_sequence_remaining {
flags[CircuitFlags::DoNotUpdatePC as usize] = match self.virtual_sequence_remaining {
Some(i) => i != 0,
None => false
};
Expand Down
10 changes: 5 additions & 5 deletions jolt-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ ark-serialize = { version = "0.4.2", default-features = false, features = [
"derive",
] }
ark-std = { version = "0.4.0" }
binius-field = { git = "https://gitlab.com/UlvetannaOSS/binius", package = "binius_field"}
binius-field = { git = "https://gitlab.com/UlvetannaOSS/binius", package = "binius_field" }
clap = { version = "4.3.10", features = ["derive"] }
enum_dispatch = "0.3.12"
fixedbitset = "0.5.0"
Expand All @@ -46,8 +46,8 @@ rgb = "0.8.37"
serde = { version = "1.0.*", default-features = false }
sha3 = "0.10.8"
smallvec = "1.13.1"
strum = "0.25.0"
strum_macros = "0.25.2"
strum = "0.26.3"
strum_macros = "0.26.4"
textplots = "0.8.4"
thiserror = "1.0.58"
tracing = "0.1.37"
Expand Down Expand Up @@ -101,9 +101,9 @@ default = [
host = ["dep:reqwest", "dep:tokio"]

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
memory-stats = "1.0.0"
memory-stats = "1.0.0"
tokio = { version = "1.38.0", optional = true, features = ["rt-multi-thread"] }


[target.'cfg(target_arch = "wasm32")'.dependencies]
getrandom = { version = "0.2", features = ["js"] }
getrandom = { version = "0.2", features = ["js"] }
32 changes: 13 additions & 19 deletions jolt-core/src/benches/bench.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,17 +107,13 @@ where

let task = move || {
let (bytecode, memory_init) = program.decode();
let (io_device, trace, circuit_flags) = program.trace();
let (io_device, trace) = program.trace();

let preprocessing: crate::jolt::vm::JoltPreprocessing<F, PCS> =
let preprocessing: crate::jolt::vm::JoltPreprocessing<C, F, PCS> =
RV32IJoltVM::preprocess(bytecode.clone(), memory_init, 1 << 20, 1 << 20, 1 << 22);

let (jolt_proof, jolt_commitments) = <RV32IJoltVM as Jolt<_, PCS, C, M>>::prove(
io_device,
trace,
circuit_flags,
preprocessing.clone(),
);
let (jolt_proof, jolt_commitments, _) =
<RV32IJoltVM as Jolt<_, PCS, C, M>>::prove(io_device, trace, preprocessing.clone());

println!("Proof sizing:");
serialize_and_print_size("jolt_commitments", &jolt_commitments);
Expand All @@ -133,7 +129,8 @@ where
&jolt_proof.instruction_lookups,
);

let verification_result = RV32IJoltVM::verify(preprocessing, jolt_proof, jolt_commitments);
let verification_result =
RV32IJoltVM::verify(preprocessing, jolt_proof, jolt_commitments, None);
assert!(
verification_result.is_ok(),
"Verification failed with error: {:?}",
Expand All @@ -157,22 +154,19 @@ where
let mut tasks = Vec::new();
let mut program = host::Program::new("sha2-chain-guest");
program.set_input(&[5u8; 32]);
program.set_input(&1024u32);
program.set_input(&1000u32);

let task = move || {
let (bytecode, memory_init) = program.decode();
let (io_device, trace, circuit_flags) = program.trace();
let (io_device, trace) = program.trace();

let preprocessing: crate::jolt::vm::JoltPreprocessing<F, PCS> =
let preprocessing: crate::jolt::vm::JoltPreprocessing<C, F, PCS> =
RV32IJoltVM::preprocess(bytecode.clone(), memory_init, 1 << 20, 1 << 20, 1 << 22);

let (jolt_proof, jolt_commitments) = <RV32IJoltVM as Jolt<_, PCS, C, M>>::prove(
io_device,
trace,
circuit_flags,
preprocessing.clone(),
);
let verification_result = RV32IJoltVM::verify(preprocessing, jolt_proof, jolt_commitments);
let (jolt_proof, jolt_commitments, _) =
<RV32IJoltVM as Jolt<_, PCS, C, M>>::prove(io_device, trace, preprocessing.clone());
let verification_result =
RV32IJoltVM::verify(preprocessing, jolt_proof, jolt_commitments, None);
assert!(
verification_result.is_ok(),
"Verification failed with error: {:?}",
Expand Down
6 changes: 6 additions & 0 deletions jolt-core/src/field/binius.rs
Original file line number Diff line number Diff line change
Expand Up @@ -273,3 +273,9 @@ impl<F: BiniusSpecific> ark_serialize::Valid for BiniusField<F> {
todo!()
}
}

impl<F: BiniusSpecific> std::fmt::Display for BiniusField<F> {
fn fmt(&self, _f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
todo!()
}
}
3 changes: 2 additions & 1 deletion jolt-core/src/field/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use std::fmt::Debug;
use std::fmt::{Debug, Display};
use std::ops::{Add, AddAssign, Div, Mul, MulAssign, Neg, Sub, SubAssign};

use ark_serialize::{CanonicalDeserialize, CanonicalSerialize};
Expand Down Expand Up @@ -31,6 +31,7 @@ pub trait JoltField:
+ Copy
+ Sync
+ Send
+ Display
+ Debug
+ Default
+ CanonicalSerialize
Expand Down
1 change: 0 additions & 1 deletion jolt-core/src/host/analyze.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ pub struct ProgramSummary {

pub io_device: JoltDevice,
pub processed_trace: Vec<JoltTraceStep<RV32I>>,
pub circuit_flags: Vec<bool>,
}

impl ProgramSummary {
Expand Down
Loading
Loading