Skip to content

Commit e3f8cc1

Browse files
lispclightsing
andauthored
upgrade Rust toolchain (#1418)
* partial.. * default enable circuit-params * clippy testool * clippy aggregator * remove unused * cargo update * fix tests * fix some default unused --------- Co-authored-by: lightsing <[email protected]> Co-authored-by: Akase Haruka <[email protected]>
1 parent 636c2c1 commit e3f8cc1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+572
-601
lines changed

Cargo.lock

+428-385
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aggregator/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,6 @@ zstd-encoder = { package = "encoder", git = "https://github.com/scroll-tech/da-c
4444
csv = "1.1"
4545

4646
[features]
47-
default = ["revm-precompile/c-kzg"]
47+
default = ["revm-precompile/c-kzg", "halo2_proofs/circuit-params"]
48+
display = []
4849
print-trace = ["ark-std/print-trace"]

aggregator/src/aggregation/circuit.rs

+2
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,8 @@ impl<const N_SNARKS: usize> BatchCircuit<N_SNARKS> {
132132
impl<const N_SNARKS: usize> Circuit<Fr> for BatchCircuit<N_SNARKS> {
133133
type Config = (BatchCircuitConfig<N_SNARKS>, Challenges);
134134
type FloorPlanner = SimpleFloorPlanner;
135+
type Params = ();
136+
135137
fn without_witnesses(&self) -> Self {
136138
unimplemented!()
137139
}

aggregator/src/aggregation/decoder.rs

+1
Original file line numberDiff line numberDiff line change
@@ -5468,6 +5468,7 @@ mod tests {
54685468
impl<const L: usize, const R: usize> Circuit<Fr> for DecoderConfigTester<L, R> {
54695469
type Config = (DecoderConfig<L, R>, U8Table, Challenges);
54705470
type FloorPlanner = SimpleFloorPlanner;
5471+
type Params = ();
54715472

54725473
fn without_witnesses(&self) -> Self {
54735474
unimplemented!()

aggregator/src/aggregation/decoder/seq_exec.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1127,6 +1127,7 @@ mod tests {
11271127
impl Circuit<Fr> for SeqExecMock {
11281128
type Config = SeqExecMockConfig;
11291129
type FloorPlanner = SimpleFloorPlanner;
1130+
type Params = ();
11301131
fn without_witnesses(&self) -> Self {
11311132
unimplemented!()
11321133
}

aggregator/src/aggregation/decoder/tables/fixed/fse_table_transition.rs

+1-10
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,7 @@ use halo2_proofs::{circuit::Value, halo2curves::bn256::Fr};
22

33
use super::{FixedLookupTag, FixedLookupValues};
44

5-
pub struct RomFseTableTransition {
6-
/// The block index on the previous FSE table.
7-
pub block_idx_prev: u64,
8-
/// The block index on the current FSE table.
9-
pub block_idx_curr: u64,
10-
/// The FSE table previously decoded.
11-
pub table_kind_prev: u64,
12-
/// The FSE table currently decoded.
13-
pub table_kind_curr: u64,
14-
}
5+
pub struct RomFseTableTransition;
156

167
impl FixedLookupValues for RomFseTableTransition {
178
fn values() -> Vec<[Value<Fr>; 7]> {

aggregator/src/aggregation/decoder/tables/fixed/seq_data_interleaved_order.rs

+1-10
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,7 @@ use crate::aggregation::decoder::{
55
witgen::FseTableKind,
66
};
77

8-
pub struct RomSeqDataInterleavedOrder {
9-
/// FSE table used in the previous bitstring.
10-
pub table_kind_prev: FseTableKind,
11-
/// FSE table used in the current bitstring.
12-
pub table_kind_curr: FseTableKind,
13-
/// Boolean flag to indicate whether we are initialising the FSE state.
14-
pub is_init_state: bool,
15-
/// Boolean flag to indicate whether we are updating the FSE state.
16-
pub is_update_state: bool,
17-
}
8+
pub struct RomSeqDataInterleavedOrder;
189

1910
impl FixedLookupValues for RomSeqDataInterleavedOrder {
2011
fn values() -> Vec<[Value<Fr>; 7]> {

aggregator/src/aggregation/decoder/tables/fixed/seq_tag_order.rs

+1-16
Original file line numberDiff line numberDiff line change
@@ -28,22 +28,7 @@ use super::FixedLookupValues;
2828
/// - SequenceHeader > FseCode > SequenceData (MOT)
2929
/// - (0, 0, 1):
3030
/// - SequenceHeader > FseCode > SequenceData (MLT)
31-
pub struct RomSeqTagOrder {
32-
/// Boolean flag to mark if LLT is Fse_Compressed_Mode or Predefined_Mode.
33-
pub cmode_llt: bool,
34-
/// Boolean flag to mark if MOT is Fse_Compressed_Mode or Predefined_Mode.
35-
pub cmode_mot: bool,
36-
/// Boolean flag to mark if MLT is Fse_Compressed_Mode or Predefined_Mode.
37-
pub cmode_mlt: bool,
38-
/// Tag that was handled before the current tag.
39-
pub tag_prev: ZstdTag,
40-
/// Tag currently being handled.
41-
pub tag_curr: ZstdTag,
42-
/// Tag that will be handled after the current tag.
43-
pub tag_next: ZstdTag,
44-
/// The FSE table that we expect with the current tag.
45-
pub fse_table: FseTableKind,
46-
}
31+
pub struct RomSeqTagOrder;
4732

4833
impl FixedLookupValues for RomSeqTagOrder {
4934
fn values() -> Vec<[Value<Fr>; 7]> {

aggregator/src/aggregation/decoder/tables/fixed/tag_transition.rs

+1-12
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,7 @@ use crate::aggregation::decoder::{tables::fixed::FixedLookupTag, witgen::ZstdTag
44

55
use super::FixedLookupValues;
66

7-
pub struct RomTagTransition {
8-
/// The current tag.
9-
pub tag: ZstdTag,
10-
/// The tag that will be processed after the current tag is finished processing.
11-
pub tag_next: ZstdTag,
12-
/// The maximum number of bytes that are needed to represent the current tag.
13-
pub max_len: u64,
14-
/// Whether this tag is processed from back-to-front or not.
15-
pub is_reverse: bool,
16-
/// Whether this tag belongs to a ``block`` in zstd or not.
17-
pub is_block: bool,
18-
}
7+
pub struct RomTagTransition;
198

209
impl FixedLookupValues for RomTagTransition {
2110
fn values() -> Vec<[Value<Fr>; 7]> {

aggregator/src/aggregation/decoder/tables/seqinst_table.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1003,6 +1003,7 @@ mod tests {
10031003
impl Circuit<Fr> for SeqTable {
10041004
type Config = SeqInstTable<Fr>;
10051005
type FloorPlanner = SimpleFloorPlanner;
1006+
type Params = ();
10061007
fn without_witnesses(&self) -> Self {
10071008
unimplemented!()
10081009
}

aggregator/src/aggregation/decoder/witgen.rs

+4-13
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,6 @@ pub struct LiteralsBlockResult<F> {
295295
pub offset: usize,
296296
pub witness_rows: Vec<ZstdWitnessRow<F>>,
297297
pub literals: Vec<u64>,
298-
pub regen_size: usize,
299298
}
300299

301300
#[allow(clippy::too_many_arguments)]
@@ -318,7 +317,6 @@ fn process_block_zstd<F: Field>(
318317
offset: byte_offset,
319318
witness_rows: rows,
320319
regen_size,
321-
compressed_size: _,
322320
} = process_block_zstd_literals_header::<F>(src, block_idx, byte_offset, last_row, randomness);
323321

324322
witness_rows.extend_from_slice(&rows);
@@ -327,7 +325,6 @@ fn process_block_zstd<F: Field>(
327325
offset: byte_offset,
328326
witness_rows: rows,
329327
literals,
330-
regen_size: _,
331328
} = {
332329
let last_row = rows.last().cloned().unwrap();
333330
let multiplier =
@@ -376,7 +373,6 @@ fn process_block_zstd<F: Field>(
376373
})
377374
.collect::<Vec<_>>(),
378375
literals: literals.iter().map(|b| *b as u64).collect::<Vec<u64>>(),
379-
regen_size,
380376
}
381377
};
382378

@@ -1606,7 +1602,6 @@ pub struct LiteralsHeaderProcessingResult<F> {
16061602
pub offset: usize,
16071603
pub witness_rows: Vec<ZstdWitnessRow<F>>,
16081604
pub regen_size: usize,
1609-
pub compressed_size: usize,
16101605
}
16111606

16121607
fn process_block_zstd_literals_header<F: Field>(
@@ -1626,12 +1621,11 @@ fn process_block_zstd_literals_header<F: Field>(
16261621
let literals_block_type = BlockType::from(lh_bytes[0] & 0x3);
16271622
let size_format = (lh_bytes[0] >> 2) & 3;
16281623

1629-
let [n_bits_fmt, n_bits_regen, n_bits_compressed, _n_streams, n_bytes_header, _branch]: [usize;
1630-
6] = match literals_block_type {
1624+
let [n_bits_fmt, n_bits_regen, n_bytes_header]: [usize; 3] = match literals_block_type {
16311625
BlockType::RawBlock => match size_format {
1632-
0b00 | 0b10 => [1, 5, 0, 1, 1, 0],
1633-
0b01 => [2, 12, 0, 1, 2, 1],
1634-
0b11 => [2, 20, 0, 1, 3, 2],
1626+
0b00 | 0b10 => [1, 5, 1],
1627+
0b01 => [2, 12, 2],
1628+
0b11 => [2, 20, 3],
16351629
_ => unreachable!("size_format out of bound"),
16361630
},
16371631
_ => unreachable!("BlockType::* unexpected. Must be raw bytes for literals."),
@@ -1644,8 +1638,6 @@ fn process_block_zstd_literals_header<F: Field>(
16441638
})[(2 + n_bits_fmt)..(n_bytes_header * N_BITS_PER_BYTE)];
16451639

16461640
let regen_size = le_bits_to_value(&sizing_bits[0..n_bits_regen]) as usize;
1647-
let compressed_size =
1648-
le_bits_to_value(&sizing_bits[n_bits_regen..(n_bits_regen + n_bits_compressed)]) as usize;
16491641
let tag_next = match literals_block_type {
16501642
BlockType::RawBlock => ZstdTag::ZstdBlockLiteralsRawBytes,
16511643
_ => unreachable!("BlockType::* unexpected. Must be raw bytes for literals."),
@@ -1698,7 +1690,6 @@ fn process_block_zstd_literals_header<F: Field>(
16981690
})
16991691
.collect::<Vec<_>>(),
17001692
regen_size,
1701-
compressed_size,
17021693
}
17031694
}
17041695

aggregator/src/aggregation/decoder/witgen/types.rs

+19-27
Original file line numberDiff line numberDiff line change
@@ -187,19 +187,23 @@ pub enum FseTableKind {
187187

188188
impl_expr!(FseTableKind);
189189

190-
impl ToString for ZstdTag {
191-
fn to_string(&self) -> String {
192-
String::from(match self {
193-
Self::Null => "null",
194-
Self::FrameHeaderDescriptor => "FrameHeaderDescriptor",
195-
Self::FrameContentSize => "FrameContentSize",
196-
Self::BlockHeader => "BlockHeader",
197-
Self::ZstdBlockLiteralsHeader => "ZstdBlockLiteralsHeader",
198-
Self::ZstdBlockLiteralsRawBytes => "ZstdBlockLiteralsRawBytes",
199-
Self::ZstdBlockSequenceHeader => "ZstdBlockSequenceHeader",
200-
Self::ZstdBlockSequenceFseCode => "ZstdBlockSequenceFseCode",
201-
Self::ZstdBlockSequenceData => "ZstdBlockSequenceData",
202-
})
190+
impl std::fmt::Display for ZstdTag {
191+
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
192+
write!(
193+
f,
194+
"{}",
195+
match self {
196+
Self::Null => "null",
197+
Self::FrameHeaderDescriptor => "FrameHeaderDescriptor",
198+
Self::FrameContentSize => "FrameContentSize",
199+
Self::BlockHeader => "BlockHeader",
200+
Self::ZstdBlockLiteralsHeader => "ZstdBlockLiteralsHeader",
201+
Self::ZstdBlockLiteralsRawBytes => "ZstdBlockLiteralsRawBytes",
202+
Self::ZstdBlockSequenceHeader => "ZstdBlockSequenceHeader",
203+
Self::ZstdBlockSequenceFseCode => "ZstdBlockSequenceFseCode",
204+
Self::ZstdBlockSequenceData => "ZstdBlockSequenceData",
205+
}
206+
)
203207
}
204208
}
205209

@@ -523,17 +527,6 @@ impl SequenceFixedStateActionTable {
523527
}
524528
}
525529

526-
/// Data for the FSE table's witness values.
527-
#[derive(Clone, Debug)]
528-
pub struct FseTableData {
529-
/// The byte offset in the frame at which the FSE table is described.
530-
pub byte_offset: u64,
531-
/// The FSE table's size, i.e. 1 << AL (accuracy log).
532-
pub table_size: u64,
533-
/// Represent the states, symbols, and so on of this FSE table.
534-
pub rows: Vec<FseTableRow>,
535-
}
536-
537530
/// Auxiliary data accompanying the FSE table's witness values.
538531
#[derive(Clone, Debug)]
539532
pub struct FseAuxiliaryTableData {
@@ -787,7 +780,7 @@ impl FseAuxiliaryTableData {
787780
let mut count = 0;
788781
let mut states_with_skipped: Vec<(u64, bool)> = Vec::with_capacity(N);
789782
while count < N {
790-
if allocated_states.get(&state).is_some() {
783+
if allocated_states.contains_key(&state) {
791784
// if state has been pre-allocated to some symbol with prob=-1.
792785
states_with_skipped.push((state, true));
793786
} else {
@@ -949,8 +942,7 @@ mod tests {
949942
(0x1e, 0x0c, 2),
950943
]
951944
.iter()
952-
.enumerate()
953-
.map(|(_i, &(state, baseline, num_bits))| FseTableRow {
945+
.map(|&(state, baseline, num_bits)| FseTableRow {
954946
state,
955947
symbol: 1,
956948
baseline,

aggregator/src/aggregation/rlc/gates.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
use ethers_core::utils::keccak256;
22
use halo2_proofs::{
3-
arithmetic::Field,
43
circuit::{AssignedCell, Cell, Region, RegionIndex, Value},
54
halo2curves::bn256::Fr,
65
plonk::Error,

aggregator/src/compression/circuit.rs

+1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ pub struct CompressionCircuit {
5353
impl Circuit<Fr> for CompressionCircuit {
5454
type Config = CompressionConfig;
5555
type FloorPlanner = SimpleFloorPlanner;
56+
type Params = ();
5657

5758
fn without_witnesses(&self) -> Self {
5859
let flattened_instances = self

aggregator/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![feature(lazy_cell)]
1+
#![allow(clippy::doc_lazy_continuation)]
22
/// proof aggregation
33
mod aggregation;
44
/// This module implements `Batch` related data types.

aggregator/src/recursion/circuit.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,7 @@ impl<ST: StateTransition> RecursionCircuit<ST> {
246246
impl<ST: StateTransition> Circuit<Fr> for RecursionCircuit<ST> {
247247
type Config = config::RecursionConfig;
248248
type FloorPlanner = SimpleFloorPlanner;
249+
type Params = ();
249250

250251
fn without_witnesses(&self) -> Self {
251252
Self {
@@ -528,7 +529,7 @@ impl<ST: StateTransition> Circuit<Fr> for RecursionCircuit<ST> {
528529
#[cfg(feature = "display")]
529530
dbg!(ctx.total_advice);
530531
#[cfg(feature = "display")]
531-
println!("Advice columns used: {}", ctx.advice_alloc[0][0].0 + 1);
532+
println!("Advice columns used: {:?}", ctx.advice_alloc[0]);
532533

533534
// Return the computed instance cells for this Recursion Circuit.
534535
Ok([lhs.x(), lhs.y(), rhs.x(), rhs.y()]

aggregator/src/recursion/util.rs

-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ mod dummy_circuit {
2828
impl<F: Field, C: CircuitExt<F>> Circuit<F> for CsProxy<F, C> {
2929
type Config = C::Config;
3030
type FloorPlanner = C::FloorPlanner;
31-
#[cfg(feature = "circuit-params")]
3231
type Params = ();
3332

3433
fn without_witnesses(&self) -> Self {

aggregator/src/tests/blob.rs

+1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ struct BlobConfig {
5858
impl Circuit<Fr> for BlobCircuit {
5959
type Config = BlobConfig;
6060
type FloorPlanner = SimpleFloorPlanner;
61+
type Params = ();
6162
fn without_witnesses(&self) -> Self {
6263
unimplemented!()
6364
}

aggregator/src/tests/mock_chunk.rs

+1
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ impl MockChunkCircuit {
6969
impl Circuit<Fr> for MockChunkCircuit {
7070
type Config = MockConfig;
7171
type FloorPlanner = SimpleFloorPlanner;
72+
type Params = ();
7273

7374
fn without_witnesses(&self) -> Self {
7475
Self::default()

aggregator/src/tests/recursion.rs

-2
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,6 @@ mod app {
130130
impl Circuit<Fr> for Square {
131131
type Config = Selector;
132132
type FloorPlanner = SimpleFloorPlanner;
133-
#[cfg(feature = "circuit-params")]
134133
type Params = ();
135134

136135
fn without_witnesses(&self) -> Self {
@@ -311,7 +310,6 @@ mod app_add_inst {
311310
impl Circuit<Fr> for Square {
312311
type Config = (Selector, Column<Advice>, Column<Instance>);
313312
type FloorPlanner = SimpleFloorPlanner;
314-
#[cfg(feature = "circuit-params")]
315313
type Params = ();
316314

317315
fn without_witnesses(&self) -> Self {

aggregator/src/tests/rlc/dynamic_hashes.rs

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ struct DynamicHashCircuitConfig {
3434
impl Circuit<Fr> for DynamicHashCircuit {
3535
type Config = (DynamicHashCircuitConfig, Challenges);
3636
type FloorPlanner = SimpleFloorPlanner;
37+
type Params = ();
3738

3839
fn without_witnesses(&self) -> Self {
3940
unimplemented!()

aggregator/src/tests/rlc/gates.rs

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ struct ArithTestCircuit {
2525
impl Circuit<Fr> for ArithTestCircuit {
2626
type Config = RlcConfig;
2727
type FloorPlanner = SimpleFloorPlanner;
28+
type Params = ();
2829
fn without_witnesses(&self) -> Self {
2930
Self::default()
3031
}

bus-mapping/src/circuit_input_builder.rs

+5-4
Original file line numberDiff line numberDiff line change
@@ -147,10 +147,11 @@ impl Default for CircuitsParams {
147147
/// steps:
148148
///
149149
/// 1. Take a [`eth_types::Block`] to build the circuit input associated with
150-
/// the block. 2. For each [`eth_types::Transaction`] in the block, take the
151-
/// [`eth_types::GethExecTrace`] to build the circuit input associated with
152-
/// each transaction, and the bus-mapping operations associated with each
153-
/// [`eth_types::GethExecStep`] in the [`eth_types::GethExecTrace`].
150+
/// the block.
151+
/// 2. For each [`eth_types::Transaction`] in the block, take the [`eth_types::GethExecTrace`]
152+
/// to build the circuit input associated with each transaction,
153+
/// and the bus-mapping operations associated with each [`eth_types::GethExecStep`]
154+
/// in the [`eth_types::GethExecTrace`].
154155
///
155156
/// The generated bus-mapping operations are:
156157
/// [`StackOp`](crate::operation::StackOp)s,

0 commit comments

Comments
 (0)