Skip to content

Commit 57d6da3

Browse files
authored
Merge branch 'main' into feat/heap-profiling
2 parents 293e9db + 902e102 commit 57d6da3

7 files changed

Lines changed: 222 additions & 274 deletions

File tree

crypto/math/src/fft/polynomial.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ impl<E: IsField> Polynomial<FieldElement<E>> {
215215
///
216216
/// Unlike [`coset_lde_full_into`], this skips the `clear + extend_from_slice` step
217217
/// since data is already in the buffer. Used for transpose elimination: columns are
218-
/// extracted directly into pool buffers, then expanded in-place.
218+
/// extracted directly into owned buffers, then expanded in-place.
219219
pub fn coset_lde_full_expand<F: IsFFTField + IsSubFieldOf<E> + Send + Sync>(
220220
buffer: &mut Vec<FieldElement<E>>,
221221
blowup_factor: usize,

crypto/stark/src/instruments.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ pub struct ProveHeapProfile {
2828
/// Sub-operation timing breakdown for a single table in Rounds 2-4.
2929
#[derive(Clone, Debug, Default)]
3030
pub struct TableSubOps {
31-
/// reconstruct_round1 (expand_pool_to_lde)
32-
pub trace_lde: Duration,
3331
/// evaluator.evaluate()
3432
pub constraints: Duration,
3533
/// decompose_and_extend_d2
@@ -51,11 +49,11 @@ pub struct TableSubOps {
5149
/// Sub-operation breakdown for Round 1 aux commit pass.
5250
#[derive(Clone, Debug, Default)]
5351
pub struct Round1SubOps {
54-
/// Main trace: expand_pool_to_lde (LDE/FFT)
52+
/// Main trace: expand_columns_to_lde (LDE/FFT)
5553
pub main_lde: Duration,
5654
/// Main trace: commit_columns_bit_reversed (Merkle)
5755
pub main_merkle: Duration,
58-
/// Aux trace: expand_pool_to_lde (LDE/FFT)
56+
/// Aux trace: expand_columns_to_lde (LDE/FFT)
5957
pub aux_lde: Duration,
6058
/// Aux trace: commit_columns_bit_reversed (Merkle)
6159
pub aux_merkle: Duration,

0 commit comments

Comments
 (0)