Skip to content

Commit

Permalink
fix: add instrumentation to aux segment (#322)
Browse files Browse the repository at this point in the history
  • Loading branch information
Al-Kindi-0 authored Sep 18, 2024
1 parent 8f08bd0 commit ccc8819
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions prover/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,7 @@ pub trait Prover {
/// Builds and returns the auxiliary trace.
#[allow(unused_variables)]
#[maybe_async]
#[instrument(skip_all)]
fn build_aux_trace<E>(&self, main_trace: &Self::Trace, aux_rand_elements: &[E]) -> ColMatrix<E>
where
E: FieldElement<BaseField = Self::BaseField>,
Expand Down Expand Up @@ -616,6 +617,7 @@ pub trait Prover {
///
/// [1]: https://eprint.iacr.org/2023/1284
#[maybe_async]
#[instrument(skip_all)]
fn build_logup_gkr_columns<E, A, T>(
air: &A,
main_trace: &T,
Expand Down

0 comments on commit ccc8819

Please sign in to comment.