@@ -5,7 +5,7 @@ use itertools::Itertools;
5
5
6
6
use crate :: {
7
7
aggregate:: {
8
- AggregateMetrics , EXECUTE_E3_TIME_LABEL , EXECUTE_METERED_TIME_LABEL , INSNS_LABEL ,
8
+ AggregateMetrics , EXECUTE_METERED_TIME_LABEL , EXECUTE_PREFLIGHT_TIME_LABEL , INSNS_LABEL ,
9
9
MAIN_CELLS_USED_LABEL , PROOF_TIME_LABEL , PROVE_EXCL_TRACE_TIME_LABEL , TRACE_GEN_TIME_LABEL ,
10
10
} ,
11
11
types:: MdTableCell ,
@@ -169,8 +169,8 @@ impl AggregateMetrics {
169
169
. get ( EXECUTE_METERED_TIME_LABEL )
170
170
. map ( |s| s. sum . val )
171
171
. unwrap_or ( 0.0 ) ;
172
- let execute_e3 = stats
173
- . get ( EXECUTE_E3_TIME_LABEL )
172
+ let execute_preflight = stats
173
+ . get ( EXECUTE_PREFLIGHT_TIME_LABEL )
174
174
. map ( |s| s. sum . val )
175
175
. unwrap_or ( 0.0 ) ;
176
176
// If total_proof_time_ms is not available, compute it from components
@@ -184,9 +184,12 @@ impl AggregateMetrics {
184
184
. unwrap_or ( 0.0 ) ;
185
185
println ! (
186
186
"{} {} {} {}" ,
187
- execute_metered, execute_e3 , trace_gen, stark_prove
187
+ execute_metered, execute_preflight , trace_gen, stark_prove
188
188
) ;
189
- MdTableCell :: new ( execute_metered + execute_e3 + trace_gen + stark_prove, None )
189
+ MdTableCell :: new (
190
+ execute_metered + execute_preflight + trace_gen + stark_prove,
191
+ None ,
192
+ )
190
193
} ;
191
194
println ! ( "{}" , self . total_proof_time. val) ;
192
195
let par_proof_time_ms = if let Some ( proof_stats) = stats. get ( PROOF_TIME_LABEL ) {
@@ -197,8 +200,8 @@ impl AggregateMetrics {
197
200
. get ( EXECUTE_METERED_TIME_LABEL )
198
201
. map ( |s| s. max . val )
199
202
. unwrap_or ( 0.0 ) ;
200
- let execute_e3 = stats
201
- . get ( EXECUTE_E3_TIME_LABEL )
203
+ let execute_preflight = stats
204
+ . get ( EXECUTE_PREFLIGHT_TIME_LABEL )
202
205
. map ( |s| s. max . val )
203
206
. unwrap_or ( 0.0 ) ;
204
207
let trace_gen = stats
@@ -209,7 +212,10 @@ impl AggregateMetrics {
209
212
. get ( PROVE_EXCL_TRACE_TIME_LABEL )
210
213
. map ( |s| s. max . val )
211
214
. unwrap_or ( 0.0 ) ;
212
- MdTableCell :: new ( execute_metered + execute_e3 + trace_gen + stark_prove, None )
215
+ MdTableCell :: new (
216
+ execute_metered + execute_preflight + trace_gen + stark_prove,
217
+ None ,
218
+ )
213
219
} ;
214
220
let cells_used = stats
215
221
. get ( MAIN_CELLS_USED_LABEL )
0 commit comments