Skip to content

Commit

Permalink
change log level
Browse files Browse the repository at this point in the history
  • Loading branch information
lispc committed Sep 20, 2023
1 parent ca3066c commit e3fe25e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions halo2_proofs/src/circuit/floor_planner/single_pass.rs
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ impl<'a, F: Field, CS: Assignment<F> + 'a> Layouter<F> for SingleChipLayouter<'a
// Do actual synthesis of sub-regions in parallel
let cs_fork_time = Instant::now();
let mut sub_cs = self.cs.fork(&ranges)?;
log::info!(
log::debug!(
"CS forked into {} subCS took {:?}",
sub_cs.len(),
cs_fork_time.elapsed()
Expand All @@ -275,7 +275,7 @@ impl<'a, F: Field, CS: Assignment<F> + 'a> Layouter<F> for SingleChipLayouter<'a
let result = assignment(region_ref.into());
let constant = region.constants.clone();
sub_layouter.cs.exit_region();
log::info!(
log::debug!(
"region {} 2nd pass synthesis took {:?}",
region_name,
sub_region_2nd_pass.elapsed()
Expand All @@ -294,12 +294,12 @@ impl<'a, F: Field, CS: Assignment<F> + 'a> Layouter<F> for SingleChipLayouter<'a
let cs_merge_time = Instant::now();
let num_sub_cs = sub_cs.len();
self.cs.merge(sub_cs)?;
log::info!(
log::debug!(
"Merge {} subCS back took {:?}",
num_sub_cs,
cs_merge_time.elapsed()
);
log::info!(
log::debug!(
"{} sub_regions of {} 2nd pass synthesis took {:?}",
ranges.len(),
region_name,
Expand Down

0 comments on commit e3fe25e

Please sign in to comment.