Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support multi-block #1273

Merged
merged 17 commits into from
May 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
27 changes: 17 additions & 10 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion aggregator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ revm-primitives = "3.1.0"

# da-compression
bitstream-io = "2.2.0"
zstd = { version = "0.13", features = ["experimental"] }
zstd = { git = "https://github.com/scroll-tech/zstd-rs", branch = "hack/mul-block", features = ["experimental"]}

[dev-dependencies]

Expand Down
Binary file added aggregator/data/test_blobs/multi/202708.hex
Binary file not shown.
Binary file added aggregator/data/test_blobs/multi/202709.hex
Binary file not shown.
Binary file added aggregator/data/test_blobs/multi/202710.hex
Binary file not shown.
Binary file added aggregator/data/test_blobs/multi/202711.hex
Binary file not shown.
Binary file added aggregator/data/test_blobs/multi/202712.hex
Binary file not shown.
2 changes: 2 additions & 0 deletions aggregator/src/aggregation/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ impl AggregationConfig {
let range8 = RangeTable::construct(meta);
let range16 = RangeTable::construct(meta);
let range512 = RangeTable::construct(meta);
let range_block_len = RangeTable::construct(meta);
let bitwise_op_table = BitwiseOpTable::construct(meta);
let decoder_config = DecoderConfig::configure(
meta,
Expand All @@ -142,6 +143,7 @@ impl AggregationConfig {
range8,
range16,
range512,
range_block_len,
bitwise_op_table,
},
);
Expand Down
Loading
Loading