binius_field/
tracing.rs

1// Copyright 2024-2025 Irreducible Inc.
2
3/// Trace multiplication event
4macro_rules! trace_multiplication {
5    ($name: ty) => {
6        #[cfg(feature = "trace_multiplications")]
7        {
8            tracing::event!(name: "mul", tracing::Level::TRACE, {lhs = stringify!($name), rhs = stringify!($name)});
9        }
10    };
11    ($lhs: ty, $rhs: ty) => {
12        #[cfg(feature = "trace_multiplications")]
13        {
14            tracing::event!(name: "mul", tracing::Level::TRACE, {lhs = stringify!($lhs), rhs = stringify!($rhs)});
15        }
16    };
17}
18
19pub(crate) use trace_multiplication;