@@ -12,7 +12,8 @@ use std::time::Duration;
1212
1313use criterion:: { black_box, criterion_group, criterion_main, Criterion , SamplingMode } ;
1414use miden_core_lib:: CoreLibrary ;
15- use miden_processor:: { fast:: FastProcessor , parallel:: build_trace, ExecutionOptions } ;
15+ use miden_processor:: parallel:: build_trace;
16+ use miden_processor:: { fast:: FastProcessor , ExecutionOptions } ;
1617use miden_vm:: { prove_sync, Assembler , DefaultHost , ProvingOptions , StackInputs } ;
1718use synthetic_tx_kernel:: { generator:: MasmGenerator , load_profile} ;
1819
@@ -111,9 +112,10 @@ fn synthetic_transaction_kernel(c: &mut Criterion) {
111112 let mut test_host = DefaultHost :: default ( )
112113 . with_library ( & core_lib)
113114 . expect ( "Failed to initialize test host" ) ;
114- let test_processor = FastProcessor :: new_with_advice_inputs (
115+ let test_processor = FastProcessor :: new_with_options (
115116 StackInputs :: default ( ) ,
116117 miden_processor:: advice:: AdviceInputs :: default ( ) ,
118+ ExecutionOptions :: default ( ) ,
117119 ) ;
118120 let test_result = tokio:: runtime:: Runtime :: new ( )
119121 . expect ( "Failed to create runtime for smoke test" )
@@ -135,9 +137,10 @@ fn synthetic_transaction_kernel(c: &mut Criterion) {
135137 let host = DefaultHost :: default ( )
136138 . with_library ( & core_lib)
137139 . expect ( "Failed to initialize host with core library" ) ;
138- let processor = FastProcessor :: new_with_advice_inputs (
140+ let processor = FastProcessor :: new_with_options (
139141 StackInputs :: default ( ) ,
140142 miden_processor:: advice:: AdviceInputs :: default ( ) ,
143+ ExecutionOptions :: default ( ) ,
141144 ) ;
142145 ( host, program. clone ( ) , processor)
143146 } ,
0 commit comments