mirror of
https://github.com/saymrwulf/pasta_curves-source.git
synced 2026-09-04 20:03:39 +00:00
143 lines
4.7 KiB
Rust
143 lines
4.7 KiB
Rust
//! Traits and structs for implementing circuit components.
|
|
|
|
use std::fmt;
|
|
|
|
use crate::{
|
|
arithmetic::FieldExt,
|
|
plonk::{Advice, Any, Column, ConstraintSystem, Error, Fixed},
|
|
};
|
|
|
|
pub mod layouter;
|
|
|
|
/// A chip implements a set of instructions that can be used by gadgets.
|
|
///
|
|
/// The chip itself should not store any state; instead, state that is required at circuit
|
|
/// synthesis time should be stored in [`Chip::Config`], which can then be fetched via
|
|
/// [`Layouter::config`].
|
|
pub trait Chip: Sized {
|
|
/// A type that holds the configuration for this chip, and any other state it may need
|
|
/// during circuit synthesis.
|
|
type Config: fmt::Debug;
|
|
|
|
/// The field that the chip is defined over.
|
|
///
|
|
/// This provides a type that the chip's configuration can reference if necessary.
|
|
type Field: FieldExt;
|
|
|
|
/// Load any fixed configuration for this chip into the circuit.
|
|
fn load(layouter: &mut impl Layouter<Self>) -> Result<(), Error>;
|
|
}
|
|
|
|
/// A pointer to a cell within a circuit.
|
|
#[derive(Clone, Copy, Debug)]
|
|
pub struct Cell {
|
|
/// Identifies the region in which this cell resides.
|
|
region_index: usize,
|
|
row_offset: usize,
|
|
column: Column<Any>,
|
|
}
|
|
|
|
/// A permutation configured by a chip.
|
|
#[derive(Clone, Debug)]
|
|
pub struct Permutation {
|
|
index: usize,
|
|
mapping: Vec<Column<Any>>,
|
|
}
|
|
|
|
impl Permutation {
|
|
/// Configures a new permutation for the given columns.
|
|
pub fn new<F: FieldExt>(meta: &mut ConstraintSystem<F>, columns: &[Column<Advice>]) -> Self {
|
|
let index = meta.permutation(columns);
|
|
Permutation {
|
|
index,
|
|
mapping: columns.iter().map(|c| (*c).into()).collect(),
|
|
}
|
|
}
|
|
}
|
|
|
|
/// A region of the circuit in which a [`Chip`] can assign cells.
|
|
///
|
|
/// Inside a region, the chip may freely use relative offsets; the [`Layouter`] will
|
|
/// treat these assignments as a single "region" within the circuit.
|
|
///
|
|
/// The [`Layouter`] is allowed to optimise between regions as it sees fit. Chips must use
|
|
/// [`Region::constrain_equal`] to copy in variables assigned in other regions.
|
|
///
|
|
/// TODO: It would be great if we could constrain the columns in these types to be
|
|
/// "logical" columns that are guaranteed to correspond to the chip (and have come from
|
|
/// `Chip::Config`).
|
|
#[derive(Debug)]
|
|
pub struct Region<'r, C: Chip> {
|
|
region: &'r mut dyn layouter::RegionLayouter<C>,
|
|
}
|
|
|
|
impl<'r, C: Chip> From<&'r mut dyn layouter::RegionLayouter<C>> for Region<'r, C> {
|
|
fn from(region: &'r mut dyn layouter::RegionLayouter<C>) -> Self {
|
|
Region { region }
|
|
}
|
|
}
|
|
|
|
impl<'r, C: Chip> Region<'r, C> {
|
|
/// Assign an advice column value (witness).
|
|
///
|
|
/// Even though `to` has `FnMut` bounds, it is guaranteed to be called at most once.
|
|
pub fn assign_advice<'v>(
|
|
&'v mut self,
|
|
column: Column<Advice>,
|
|
offset: usize,
|
|
mut to: impl FnMut() -> Result<C::Field, Error> + 'v,
|
|
) -> Result<Cell, Error> {
|
|
self.region.assign_advice(column, offset, &mut to)
|
|
}
|
|
|
|
/// Assign a fixed value.
|
|
///
|
|
/// Even though `to` has `FnMut` bounds, it is guaranteed to be called at most once.
|
|
pub fn assign_fixed<'v>(
|
|
&'v mut self,
|
|
column: Column<Fixed>,
|
|
offset: usize,
|
|
mut to: impl FnMut() -> Result<C::Field, Error> + 'v,
|
|
) -> Result<Cell, Error> {
|
|
self.region.assign_fixed(column, offset, &mut to)
|
|
}
|
|
|
|
/// Constraint two cells to have the same value.
|
|
///
|
|
/// Returns an error if either of the cells is not within the given permutation.
|
|
pub fn constrain_equal(
|
|
&mut self,
|
|
permutation: &Permutation,
|
|
left: Cell,
|
|
right: Cell,
|
|
) -> Result<(), Error> {
|
|
self.region.constrain_equal(permutation, left, right)
|
|
}
|
|
}
|
|
|
|
/// A layout strategy for a specific chip within a circuit.
|
|
///
|
|
/// This abstracts over the circuit assignments, handling row indices etc.
|
|
///
|
|
/// A particular concrete layout strategy will implement this trait for each chip it
|
|
/// supports.
|
|
pub trait Layouter<C: Chip> {
|
|
/// Provides access to the chip configuration.
|
|
fn config(&self) -> &C::Config;
|
|
|
|
/// Assign a region of gates to an absolute row number.
|
|
///
|
|
/// Inside the closure, the chip may freely use relative offsets; the `Layouter` will
|
|
/// treat these assignments as a single "region" within the circuit. Outside this
|
|
/// closure, the `Layouter` is allowed to optimise as it sees fit.
|
|
///
|
|
/// ```ignore
|
|
/// fn assign_region(&mut self, |region| {
|
|
/// region.assign_advice(self.config.a, offset, || { Some(value)});
|
|
/// });
|
|
/// ```
|
|
fn assign_region(
|
|
&mut self,
|
|
assignment: impl FnMut(Region<'_, C>) -> Result<(), Error>,
|
|
) -> Result<(), Error>;
|
|
}
|