Skip to content

Commit 3628145

Browse files
committed
spec/keccak: fix rebase
1 parent 77c76e7 commit 3628145

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

spec/keccak.typ

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#import "/src.typ": load_config, load_chip
33
#import "/chip.typ": (
44
render_chip_assumptions,
5-
render_chip_column_table,
5+
render_chip_variable_table,
66
total_nr_variables,
77
total_nr_instantiated_columns,
88
render_constraint_table,
@@ -30,7 +30,7 @@ The keccak accelerator comprises two chips: a core chip that interacts with the
3030
#let nr_columns = total_nr_instantiated_columns(chip, config)
3131

3232
The core #keccak chip is comprised of #nr_variables variables that are expressed using #nr_columns columns:
33-
#render_chip_column_table(chip, config)
33+
#render_chip_variable_table(chip, config)
3434

3535
== Constraints
3636
In this VM, we assign syscall number -2 to the #keccak accelerator.
@@ -58,7 +58,7 @@ The #keccak table can be padded to the next power of two with the following valu
5858
#let nr_columns = total_nr_instantiated_columns(round_chip, config)
5959

6060
The #keccak_rnd chip is comprised of #nr_variables variables that are expressed using #nr_columns columns:
61-
#render_chip_column_table(round_chip, config)
61+
#render_chip_variable_table(round_chip, config)
6262

6363

6464
#strong("Note on " + raw("rnc") + " and " + raw("rbc") + ".")
@@ -104,5 +104,5 @@ Lastly, the round chip contributes the following interactions to the lookup:
104104
#let nr_columns = total_nr_instantiated_columns(rc_chip, config)
105105

106106
We provide the round constants through a short precomputed lookup table: #keccak_rc.
107-
#render_chip_column_table(rc_chip, config)
107+
#render_chip_variable_table(rc_chip, config)
108108
#render_constraint_table(rc_chip, config)

0 commit comments

Comments
 (0)