Skip to content
This repository was archived by the owner on Apr 18, 2025. It is now read-only.

Bus Parallel Assignments (2) #1065

Closed
wants to merge 25 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
0c3b39f
[FEAT] support mainnet block in mainnet.rs (#814) (#1004)
noel2004 Nov 20, 2023
abb7564
fix: only enable circuit for `BASEFEE` opcode (without opcode mapping…
silathdiir Nov 22, 2023
8dbfa1c
Disable applying MPT if non-scroll in integration-tests. (#1034)
silathdiir Nov 22, 2023
8e0fd2e
Add `AccessListGasCost` to `TxContextFieldTag`. (#1041)
silathdiir Nov 22, 2023
b638992
[feat] enum error in GethExecStep (#1037)
lightsing Nov 23, 2023
876d234
[feat] add feature switch of memory/stack/storage (#1038)
lightsing Nov 25, 2023
947ca7e
parallel assignment of evm circuit (#1027)
lispc Nov 28, 2023
0b71e66
Refactor PI Circuit (#1042)
roynalnaruto Nov 28, 2023
bfd47e1
fix macos build (#1047)
lispc Nov 28, 2023
17351c6
remove halo2wrong (#1048)
lispc Nov 30, 2023
07cf6bd
feat: Add `TxEip2930Gadget` to handle EIP-2930 (for evm-circuit part)…
silathdiir Nov 30, 2023
7fa17b1
[FEAT] precompile-sha256 (#1032)
noel2004 Dec 1, 2023
88e28e4
fix fmt (#1049)
noel2004 Dec 1, 2023
618fd1e
chore: upgrade group/ff/halo2 and rust version (#1022)
zhenfeizhang Dec 6, 2023
fb271ea
[chore] update rust toolchain to 1.76 nightly; replace lazy_static/o…
lispc Dec 6, 2023
6126059
Merge branch 'develop' into bus-auto-merge
Dec 7, 2023
0d54829
bus-auto: fixes after merge
Dec 7, 2023
9c52286
bus-auto: support for parallel assign_regions
Dec 8, 2023
6a70be0
Fix typos (#1052)
nnsW3 Dec 11, 2023
47ec8e3
commit (#1053)
bolatfurkan Dec 11, 2023
16458d9
chore(docs): typo fix (#1059)
dzizazda Dec 11, 2023
10b7e64
feat: implement access list address and storage key lookups in copy c…
silathdiir Dec 11, 2023
5b9d1d8
[feat] impl arithmetic/environment opcodes (#1039)
lightsing Dec 11, 2023
57a2dd4
Revert testool upgrade. (#1061)
silathdiir Dec 12, 2023
4dc2d14
Merge branch 'develop' into bus-auto-merge
Dec 8, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
echo "HOME=/home/CI" >> $GITHUB_ENV
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2022-12-10
toolchain: nightly-2023-12-03
- name: Setup golang
uses: actions/setup-go@v3
with:
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
echo "HOME=/home/CI" >> $GITHUB_ENV
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2022-12-10
toolchain: nightly-2023-12-03
- name: Setup golang
uses: actions/setup-go@v3
with:
Expand All @@ -119,7 +119,7 @@ jobs:
- name: Run light tests # light tests are run in parallel
run: cargo test --verbose --release --all --features scroll --exclude integration-tests --exclude circuit-benchmarks --exclude testool
- name: Run heavy tests
run: cargo test --verbose --release --features scroll --all --exclude integration-tests --exclude circuit-benchmarks serial_ -- --ignored
run: cargo test --verbose --release --features scroll --all --exclude integration-tests --exclude circuit-benchmarks serial_ -- --ignored --skip max_tx
- name: Run parallel assignment tests(bytecode)
run: cargo test --release --package zkevm-circuits --lib bytecode_circuit::test --features scroll,parallel_syn -- --nocapture
- name: Run parallel assignment tests(state)
Expand All @@ -144,7 +144,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2022-12-10
toolchain: nightly-2023-12-03
- name: Add target
run: rustup target add ${{ matrix.target }}
# Go cache for building geth-utils
Expand Down Expand Up @@ -181,7 +181,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2022-12-10
toolchain: nightly-2023-12-03
# Go cache for building geth-utils
- name: Go cache
uses: actions/cache@v3
Expand Down Expand Up @@ -214,7 +214,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2022-12-10
toolchain: nightly-2023-12-03
# Go cache for building geth-utils
- name: Go cache
uses: actions/cache@v3
Expand Down Expand Up @@ -251,7 +251,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2022-12-10
toolchain: nightly-2023-12-03
components: rustfmt
# Go cache for building geth-utils
- name: Go cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2022-12-10
toolchain: nightly-2023-12-03
- name: Setup golang
uses: actions/setup-go@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lints.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2022-12-10
toolchain: nightly-2023-12-03
components: clippy
# Go cache for building geth-utils
- name: Go cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-features.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2022-12-10
toolchain: nightly-2023-12-03

# Go cache for building geth-utils
- name: Go cache
Expand Down
Loading