Skip to content

Commit

Permalink
CompositeBackend: Fix machine stats (#1637)
Browse files Browse the repository at this point in the history
Previously, arrays of columns were counted as 1.
  • Loading branch information
georgwiese authored Jul 31, 2024
1 parent b59b283 commit 39a1485
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/src/composite/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,8 @@ impl<F: FieldElement, B: BackendFactory<F>> BackendFactory<F> for CompositeBacke
}

fn log_machine_stats<T: FieldElement>(machine_name: &str, pil: &Analyzed<T>) {
let num_witness_columns = pil.committed_polys_in_source_order().len();
let num_fixed_columns = pil.constant_polys_in_source_order().len();
let num_witness_columns = pil.commitment_count();
let num_fixed_columns = pil.constant_count();
let max_identity_degree = pil
.identities_with_inlined_intermediate_polynomials()
.iter()
Expand Down

0 comments on commit 39a1485

Please sign in to comment.