mirror of
https://github.com/powdr-labs/powdr.git
synced 2026-04-20 03:03:25 -04:00
CompositeBackend: Fix machine stats (#1637)
Previously, arrays of columns were counted as 1.
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user