-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Commitment Scheme evaluation per size
- Loading branch information
1 parent
06846de
commit a3eac92
Showing
9 changed files
with
2,987 additions
and
131 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,61 @@ | ||
use num_traits::Zero; | ||
|
||
use super::CPUBackend; | ||
use crate::core::air::accumulation::ColumnAccumulator; | ||
use crate::core::backend::Col; | ||
use crate::core::circle::CirclePoint; | ||
use crate::core::commitment_scheme::quotients::{BatchedColumnOpenings, QuotientOps}; | ||
use crate::core::constraints::pair_vanishing; | ||
use crate::core::constraints::{complex_conjugate_line, pair_vanishing}; | ||
use crate::core::fields::m31::BaseField; | ||
use crate::core::fields::qm31::SecureField; | ||
use crate::core::fields::secure::SecureColumn; | ||
use crate::core::fields::{ComplexConjugate, FieldExpOps}; | ||
use crate::core::poly::circle::CircleDomain; | ||
use crate::core::poly::circle::{CircleDomain, CircleEvaluation}; | ||
use crate::core::poly::BitReversedOrder; | ||
use crate::core::utils::bit_reverse_index; | ||
|
||
impl QuotientOps for CPUBackend { | ||
fn accumulate_quotients( | ||
domain: CircleDomain, | ||
mut accum: ColumnAccumulator<'_, Self>, | ||
columns: &[Col<Self, BaseField>], | ||
columns: &[&CircleEvaluation<Self, BaseField, BitReversedOrder>], | ||
random_coeff: SecureField, | ||
openings: &[BatchedColumnOpenings], | ||
) { | ||
) -> SecureColumn<Self> { | ||
let mut res = SecureColumn::zeros(domain.size()); | ||
for row in 0..domain.size() { | ||
let domain_point = domain.at(bit_reverse_index(row, domain.log_size())); | ||
let mut row_accumlator = SecureField::zero(); | ||
for opening in openings { | ||
let mut numerator = SecureField::zero(); | ||
for (column_index, open_value) in &opening.column_indices_and_values { | ||
let column = &columns[*column_index]; | ||
let value = column[row]; | ||
numerator = numerator * random_coeff + (value - *open_value); | ||
} | ||
|
||
let denominator = pair_vanishing( | ||
opening.point, | ||
opening.point.complex_conjugate(), | ||
domain_point.into_ef(), | ||
); | ||
let row_accumlator = | ||
accumulate_row_quotients(openings, columns, row, random_coeff, domain_point); | ||
res.set(row, row_accumlator); | ||
} | ||
res | ||
} | ||
} | ||
|
||
row_accumlator *= random_coeff.pow(opening.column_indices_and_values.len() as u128) | ||
+ numerator / denominator; | ||
} | ||
accum.accumulate(row, row_accumlator); | ||
pub fn accumulate_row_quotients( | ||
openings: &[BatchedColumnOpenings], | ||
columns: &[&CircleEvaluation<CPUBackend, BaseField, BitReversedOrder>], | ||
row: usize, | ||
random_coeff: SecureField, | ||
domain_point: CirclePoint<BaseField>, | ||
) -> SecureField { | ||
let mut row_accumlator = SecureField::zero(); | ||
for opening in openings { | ||
let mut numerator = SecureField::zero(); | ||
for (column_index, open_value) in &opening.column_indices_and_values { | ||
let column = &columns[*column_index]; | ||
let value = column[row]; | ||
let linear_term = complex_conjugate_line(opening.point, *open_value, domain_point); | ||
numerator = numerator * random_coeff + value - linear_term; | ||
} | ||
|
||
let denominator = pair_vanishing( | ||
opening.point, | ||
opening.point.complex_conjugate(), | ||
domain_point.into_ef(), | ||
); | ||
|
||
row_accumlator = row_accumlator | ||
* random_coeff.pow(opening.column_indices_and_values.len() as u128) | ||
+ numerator / denominator; | ||
} | ||
row_accumlator | ||
} |
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 |
---|---|---|
@@ -1,21 +1,151 @@ | ||
use crate::core::air::accumulation::ColumnAccumulator; | ||
use crate::core::backend::{Backend, Col}; | ||
use std::cmp::Reverse; | ||
use std::collections::BTreeMap; | ||
|
||
use itertools::{izip, multiunzip, Itertools}; | ||
|
||
use crate::core::backend::cpu::quotients::accumulate_row_quotients; | ||
use crate::core::backend::Backend; | ||
use crate::core::circle::CirclePoint; | ||
use crate::core::fields::m31::BaseField; | ||
use crate::core::fields::qm31::SecureField; | ||
use crate::core::poly::circle::CircleDomain; | ||
use crate::core::fields::secure::{SecureColumn, SecureEvaluation}; | ||
use crate::core::fri::SparseCircleEvaluation; | ||
use crate::core::poly::circle::{CanonicCoset, CircleDomain, CircleEvaluation}; | ||
use crate::core::poly::BitReversedOrder; | ||
use crate::core::queries::SparseSubCircleDomain; | ||
use crate::core::utils::bit_reverse_index; | ||
|
||
pub trait QuotientOps: Backend { | ||
fn accumulate_quotients( | ||
domain: CircleDomain, | ||
accum: ColumnAccumulator<'_, Self>, | ||
columns: &[Col<Self, BaseField>], | ||
columns: &[&CircleEvaluation<Self, BaseField, BitReversedOrder>], | ||
random_coeff: SecureField, | ||
openings: &[BatchedColumnOpenings], | ||
); | ||
) -> SecureColumn<Self>; | ||
} | ||
|
||
pub struct BatchedColumnOpenings { | ||
pub point: CirclePoint<SecureField>, | ||
pub column_indices_and_values: Vec<(usize, SecureField)>, | ||
} | ||
impl BatchedColumnOpenings { | ||
/// Groups column opening by opening point. | ||
/// # Arguments | ||
/// opening: For each column, a vector of openings. | ||
pub fn new(openings: &[&Vec<PointOpening>]) -> Vec<Self> { | ||
openings | ||
.iter() | ||
.enumerate() | ||
.flat_map(|(column_index, openings)| { | ||
openings.iter().map(move |opening| (column_index, opening)) | ||
}) | ||
.group_by(|(_, opening)| opening.point) | ||
.into_iter() | ||
.map(|(point, column_openings)| BatchedColumnOpenings { | ||
point, | ||
column_indices_and_values: column_openings | ||
.map(|(column_index, opening)| (column_index, opening.value)) | ||
.collect(), | ||
}) | ||
.collect() | ||
} | ||
} | ||
|
||
pub struct PointOpening { | ||
pub point: CirclePoint<SecureField>, | ||
pub value: SecureField, | ||
} | ||
|
||
pub fn compute_fri_quotients<B: QuotientOps>( | ||
columns: &[&CircleEvaluation<B, BaseField, BitReversedOrder>], | ||
openings: &[Vec<PointOpening>], | ||
random_coeff: SecureField, | ||
) -> Vec<SecureEvaluation<B>> { | ||
izip!(columns, openings) | ||
.group_by(|(c, _)| c.domain.log_size()) | ||
.into_iter() | ||
.sorted_by_key(|(log_size, _)| Reverse(*log_size)) | ||
.map(|(log_size, tuples)| { | ||
let (columns, openings): (Vec<_>, Vec<_>) = multiunzip(tuples); | ||
let domain = CanonicCoset::new(log_size).circle_domain(); | ||
// TODO: slice. | ||
let batched_openings = BatchedColumnOpenings::new(&openings); | ||
let values = B::accumulate_quotients(domain, &columns, random_coeff, &batched_openings); | ||
SecureEvaluation { domain, values } | ||
}) | ||
.collect() | ||
} | ||
|
||
pub fn fri_answers( | ||
column_log_sizes: Vec<u32>, | ||
openings: &[Vec<PointOpening>], | ||
random_coeff: SecureField, | ||
query_domain_per_log_size: BTreeMap<u32, SparseSubCircleDomain>, | ||
queried_values_per_column: &[Vec<BaseField>], | ||
) -> Vec<SparseCircleEvaluation<SecureField>> { | ||
izip!(column_log_sizes, openings, queried_values_per_column) | ||
.group_by(|(c, ..)| *c) | ||
.into_iter() | ||
.sorted_by_key(|(log_size, _)| Reverse(*log_size)) | ||
.map(|(log_size, tuples)| { | ||
let (_, openings, queried_valued_per_column): (Vec<_>, Vec<_>, Vec<_>) = | ||
multiunzip(tuples); | ||
fri_answers_for_log_size( | ||
log_size, | ||
&openings, | ||
random_coeff, | ||
&query_domain_per_log_size[&log_size], | ||
&queried_valued_per_column, | ||
) | ||
}) | ||
.collect() | ||
} | ||
|
||
pub fn fri_answers_for_log_size( | ||
log_size: u32, | ||
openings: &[&Vec<PointOpening>], | ||
random_coeff: SecureField, | ||
query_domain: &SparseSubCircleDomain, | ||
queried_values_per_column: &[&Vec<BaseField>], | ||
) -> SparseCircleEvaluation<SecureField> { | ||
let commitment_domain = CanonicCoset::new(log_size).circle_domain(); | ||
let batched_openings = BatchedColumnOpenings::new(openings); | ||
for x in queried_values_per_column { | ||
assert_eq!(x.len(), query_domain.flatten().len()); | ||
} | ||
let mut queried_values_per_column = queried_values_per_column | ||
.iter() | ||
.map(|q| q.iter()) | ||
.collect_vec(); | ||
|
||
let res = SparseCircleEvaluation::new( | ||
query_domain | ||
.iter() | ||
.map(|subdomain| { | ||
let domain = subdomain.to_circle_domain(&commitment_domain); | ||
let column_evals = queried_values_per_column | ||
.iter_mut() | ||
.map(|q| { | ||
CircleEvaluation::new(domain, q.take(domain.size()).copied().collect_vec()) | ||
}) | ||
.collect_vec(); | ||
// TODO(spapini): bit reverse iterator. | ||
let values = (0..domain.size()) | ||
.map(|row| { | ||
let domain_point = domain.at(bit_reverse_index(row, log_size)); | ||
accumulate_row_quotients( | ||
&batched_openings, | ||
&column_evals.iter().collect_vec(), | ||
row, | ||
random_coeff, | ||
domain_point, | ||
) | ||
}) | ||
.collect(); | ||
CircleEvaluation::new(domain, values) | ||
}) | ||
.collect(), | ||
); | ||
assert!(queried_values_per_column.iter().all(|x| x.is_empty())); | ||
res | ||
} |
Oops, something went wrong.