|
1 | 1 | #import "/book.typ": book-page, aside, rj |
2 | 2 | #import "/src.typ": load_config, load_chip |
3 | 3 | #import "/chip.typ": ( |
4 | | - render_chip_column_table, |
| 4 | + render_chip_variable_table, |
5 | 5 | total_nr_variables, |
6 | 6 | total_nr_instantiated_columns, |
7 | 7 | render_constraint_table, |
@@ -43,7 +43,7 @@ Most of the structure and variable naming follows the pseudocode of the wikipedi |
43 | 43 | #let nr_columns = total_nr_instantiated_columns(sha256chip, config) |
44 | 44 |
|
45 | 45 | The #sha256 chip leverages #nr_variables variables, spanning #nr_columns columns: |
46 | | -#render_chip_column_table(sha256chip, config) |
| 46 | +#render_chip_variable_table(sha256chip, config) |
47 | 47 |
|
48 | 48 | == Constraints |
49 | 49 |
|
@@ -82,7 +82,7 @@ The chip therefore contributes the following interaction to the lookup-argument: |
82 | 82 | #let nr_columns = total_nr_instantiated_columns(sha256msgschedchip, config) |
83 | 83 |
|
84 | 84 | The #sha256msgsched chip leverages #nr_variables variables, spanning #nr_columns columns: |
85 | | -#render_chip_column_table(sha256msgschedchip, config) |
| 85 | +#render_chip_variable_table(sha256msgschedchip, config) |
86 | 86 |
|
87 | 87 | == Assumptions |
88 | 88 |
|
@@ -112,7 +112,7 @@ Finally, we contribute to the LogUp. |
112 | 112 | #let nr_columns = total_nr_instantiated_columns(sha256roundchip, config) |
113 | 113 |
|
114 | 114 | The #sha256round chip leverages #nr_variables variables, spanning #nr_columns columns: |
115 | | -#render_chip_column_table(sha256roundchip, config) |
| 115 | +#render_chip_variable_table(sha256roundchip, config) |
116 | 116 |
|
117 | 117 | == Assumptions |
118 | 118 |
|
@@ -160,7 +160,7 @@ making the usage of `HWSL` more straightforward and avoid extra columns to repre |
160 | 160 | #let nr_columns = total_nr_instantiated_columns(rotxorchip, config) |
161 | 161 | The #rotxor chip leverages #nr_variables variables, spanning #nr_columns columns: |
162 | 162 |
|
163 | | -#render_chip_column_table(rotxorchip, config) |
| 163 | +#render_chip_variable_table(rotxorchip, config) |
164 | 164 |
|
165 | 165 | == Assumptions |
166 | 166 |
|
@@ -192,7 +192,7 @@ And finally contribute to the lookup argument. |
192 | 192 |
|
193 | 193 | As mentioned, we provide the round constants through a short precomputed lookup table: #sha256_k. |
194 | 194 |
|
195 | | -#render_chip_column_table(sha256_kchip, config) |
| 195 | +#render_chip_variable_table(sha256_kchip, config) |
196 | 196 | #render_constraint_table(sha256_kchip, config) |
197 | 197 |
|
198 | 198 | = Notes/optimizations |
|
0 commit comments