Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into matthias/rump-cpu
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasgoergens committed May 9, 2024
2 parents c4f0b59 + 8be3e75 commit 49c76bc
Show file tree
Hide file tree
Showing 73 changed files with 4,602 additions and 4,120 deletions.
139 changes: 40 additions & 99 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ plonky2_crypto = { git = "https://github.com/0xmozak/plonky2-crypto.git" }
criterion = { version = "0.5", default-features = false, features = ["html_reports", "plotters", "cargo_bench_support"] }

[patch.crates-io]
clio = { git = "https://github.com/0xmozak/clio.git" }
plonky2 = { git = "https://github.com/0xmozak/plonky2.git" }
plonky2_maybe_rayon = { git = "https://github.com/0xmozak/plonky2.git" }
starky = { git = "https://github.com/0xmozak/plonky2.git" }
3 changes: 3 additions & 0 deletions circuits/src/cpu/columns.rs
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,7 @@ pub struct CpuState<T> {
pub is_event_tape: T,
pub is_events_commitment_tape: T,
pub is_cast_list_commitment_tape: T,
pub is_self_prog_id_tape: T,
pub is_halt: T,
pub is_poseidon2: T,
}
Expand Down Expand Up @@ -336,6 +337,7 @@ pub fn lookup_for_storage_tables() -> TableWithTypedOutput<StorageDeviceCtl<Colu
CPU.is_event_tape,
CPU.is_events_commitment_tape,
CPU.is_cast_list_commitment_tape,
CPU.is_self_prog_id_tape,
]),
clk: CPU.clk,
addr: CPU.io_addr,
Expand All @@ -348,6 +350,7 @@ pub fn lookup_for_storage_tables() -> TableWithTypedOutput<StorageDeviceCtl<Colu
CPU.is_event_tape,
CPU.is_events_commitment_tape,
CPU.is_cast_list_commitment_tape,
CPU.is_self_prog_id_tape,
]
.iter()
.sum(),
Expand Down
Loading

0 comments on commit 49c76bc

Please sign in to comment.