add timing to starky, evm, and system_zero

This commit is contained in:
Sebastien La Duca 2022-07-28 00:08:51 -04:00
parent 85111b0f02
commit b7fa5e81c4
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ version = "0.1.0"
edition = "2021"
[dependencies]
plonky2 = { path = "../plonky2" }
plonky2 = { path = "../plonky2", features = ["timing"] }
plonky2_util = { path = "../util" }
starky = { path = "../starky" }
anyhow = "1.0.40"

View File

@ -69,7 +69,7 @@ impl<F: RichField + Extendable<D>, const D: usize> SystemZero<F, D> {
}
pub fn generate_trace(&self) -> Vec<PolynomialValues<F>> {
let mut timing = TimingTree::new("generate trace", log::Level::Debug);
let timing = TimingTree::new("generate trace", log::Level::Debug);
// Generate the witness, except for permuted columns in the lookup argument.
let trace_rows = timed!(