Skip to content

Commit db56911

Browse files
committed
Revert "enable profiling"
This reverts commit 20cc639.
1 parent a557c7d commit db56911

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

crates/lean_compiler/src/lib.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ pub fn compile_program(program: &str) -> (Bytecode, BTreeMap<usize, String>) {
2424
let intermediate_bytecode = compile_to_intermediate_bytecode(simple_program).unwrap();
2525
// println!("Intermediate Bytecode:\n\n{}", intermediate_bytecode.to_string());
2626
let compiled = compile_to_low_level_bytecode(intermediate_bytecode).unwrap();
27-
println!("Function Locations: \n");
28-
for (loc, name) in function_locations.iter() {
29-
println!("{name}: {loc}");
30-
}
31-
println!("\n\nCompiled Program:\n\n{compiled}");
27+
// println!("Function Locations: \n");
28+
// for (loc, name) in function_locations.iter() {
29+
// println!("{name}: {loc}");
30+
// }
31+
// println!("\n\nCompiled Program:\n\n{compiled}");
3232
(compiled, function_locations)
3333
}
3434

crates/rec_aggregation/src/xmss_aggregate.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ pub fn run_xmss_benchmark(n_public_keys: usize) -> XmssBenchStats {
274274
(&public_input, &private_input),
275275
whir_config_builder(),
276276
no_vec_runtime_memory,
277-
true,
277+
false,
278278
);
279279
let proving_time = time.elapsed();
280280
verify_execution(&bytecode, &public_input, proof_data, whir_config_builder()).unwrap();

0 commit comments

Comments
 (0)