Skip to content

Commit

Permalink
par assignment is used by default
Browse files Browse the repository at this point in the history
  • Loading branch information
kunxian-xia committed Nov 29, 2023
1 parent 523dbf0 commit 9575b36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mpt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ impl MptCircuitConfig {
let (u32s, u64s, u128s, frs) = byte_representations(proofs);

let mpt_updates_assign_dur = Instant::now();
let use_par = std::env::var("PARALLEL_SYN").map_or(false, |s| s == *"true");
let use_par = std::env::var("PARALLEL_SYN").map_or(true, |s| s == *"true");
if use_par {
let n_assigned_rows = self.mpt_update.assign_par(layouter, proofs, randomness);

Expand Down

0 comments on commit 9575b36

Please sign in to comment.