From 488368a1a1e7a8df628b2f8a2cb56d9c7d09db9c Mon Sep 17 00:00:00 2001 From: ChihChengLiang Date: Wed, 21 Feb 2024 23:56:00 +0800 Subject: [PATCH] replace ExecutionSteps with ExecStep --- Makefile | 2 +- zkevm-circuits/src/evm_circuit/util/instrumentation.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 274e6555e95..d0eb037d531 100644 --- a/Makefile +++ b/Makefile @@ -77,7 +77,7 @@ stats_evm_circuit: # Print a table with EVM Circuit stats by ExecState/opcode stats_copy_circuit: # Print a table with Copy Circuit stats by ExecState/opcode @cargo run --bin stats --features stats -- copy -evm_exec_steps_occupancy: # Print a table for each EVM-CellManager CellType with the top 10 occupancy ExecutionSteps associated +evm_exec_steps_occupancy: # Print a table for each EVM-CellManager CellType with the top 10 occupancy ExecSteps associated @cargo run --bin stats --features stats -- exec .PHONY: clippy doc fmt test test_benches test-all evm_bench state_bench circuit_benches evm_exec_steps_occupancy stats_state_circuit stats_evm_circuit stats_copy_circuit help diff --git a/zkevm-circuits/src/evm_circuit/util/instrumentation.rs b/zkevm-circuits/src/evm_circuit/util/instrumentation.rs index a238a542f8e..200683f4acd 100644 --- a/zkevm-circuits/src/evm_circuit/util/instrumentation.rs +++ b/zkevm-circuits/src/evm_circuit/util/instrumentation.rs @@ -116,7 +116,7 @@ impl Instrument { } /// Struct which contains a Cost/ColumnType report for a particular EVM -/// `ExecutionStep`. +/// [`ExecStep`](bus_mapping::circuit_input_builder::ExecStep). #[derive(Clone, Debug, Default)] pub struct ExecStateReport { pub state: ExecutionState,