binius_m3/builder/
column.rs1use std::{marker::PhantomData, sync::Arc};
4
5use binius_core::{oracle::ShiftVariant, polynomial::MultivariatePoly};
6use binius_field::{ExtensionField, TowerField};
7use binius_math::ArithExpr;
8
9use super::{table::TableId, types::B128};
10
11pub type ColumnIndex = usize;
13
14pub type ColumnPartitionIndex = usize;
16
17#[derive(Debug, Clone, Copy, PartialEq, Eq)]
24pub struct Col<F: TowerField, const VALUES_PER_ROW: usize = 1> {
25 pub table_id: TableId,
26 pub table_index: TableId,
27 pub partition_index: ColumnPartitionIndex,
30 _marker: PhantomData<F>,
31}
32
33impl<F: TowerField, const VALUES_PER_ROW: usize> Col<F, VALUES_PER_ROW> {
34 pub(super) fn new(id: ColumnId, partition_index: ColumnPartitionIndex) -> Self {
39 assert!(VALUES_PER_ROW.is_power_of_two());
40 Self {
41 table_id: id.table_id,
42 table_index: id.table_index,
43 partition_index,
44 _marker: PhantomData,
45 }
46 }
47
48 pub fn shape(&self) -> ColumnShape {
49 ColumnShape {
50 tower_height: F::TOWER_LEVEL,
51 log_values_per_row: VALUES_PER_ROW.ilog2() as usize,
52 }
53 }
54
55 pub fn id(&self) -> ColumnId {
56 ColumnId {
57 table_id: self.table_id,
58 table_index: self.table_index,
59 }
60 }
61}
62
63pub fn upcast_col<F, FSub, const V: usize>(col: Col<FSub, V>) -> Col<F, V>
65where
66 FSub: TowerField,
67 F: TowerField + ExtensionField<FSub>,
68{
69 let Col {
70 table_id,
71 table_index,
72 partition_index,
73 _marker: _,
74 } = col;
75 Col {
77 table_id,
78 table_index,
79 partition_index,
80 _marker: PhantomData,
81 }
82}
83
84#[derive(Debug)]
86pub struct ColumnInfo<F: TowerField = B128> {
87 pub id: ColumnId,
88 pub col: ColumnDef<F>,
89 pub name: String,
90 pub shape: ColumnShape,
91 pub is_nonzero: bool,
93}
94
95#[derive(Debug, Clone, Copy)]
97pub struct ColumnShape {
98 pub tower_height: usize,
100 pub log_values_per_row: usize,
102}
103
104impl ColumnShape {
105 pub fn log_cell_size(&self) -> usize {
107 self.tower_height + self.log_values_per_row
108 }
109}
110
111#[derive(Debug, Clone, Copy)]
116pub struct ColumnId {
117 pub table_id: TableId,
118 pub table_index: ColumnIndex,
119}
120
121#[derive(Debug)]
123pub enum ColumnDef<F: TowerField = B128> {
124 Committed {
125 tower_level: usize,
126 },
127 Selected {
128 col: ColumnId,
129 index: usize,
130 index_bits: usize,
131 },
132 Shifted {
133 col: ColumnId,
134 offset: usize,
135 log_block_size: usize,
136 variant: ShiftVariant,
137 },
138 Packed {
139 col: ColumnId,
140 log_degree: usize,
141 },
142 Computed {
143 cols: Vec<ColumnIndex>,
144 expr: ArithExpr<F>,
145 },
146 Constant {
147 poly: Arc<dyn MultivariatePoly<F>>,
148 },
149}