⚡️ Speed up function periodogram
by 6%
#22
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
📄 6% (0.06x) speedup for
periodogram
inquantecon/_estspec.py
⏱️ Runtime :
1.62 milliseconds
→1.53 milliseconds
(best of290
runs)📝 Explanation and details
The optimized code achieves a 6% speedup through three key performance improvements:
1. Real FFT optimization in
periodogram
fft(x)
withnp.fft.rfft(x)
for real input datarfft
computes only frequencies in [0, π], halving both computation and memory usage[:int(n/2)+1]
sincerfft
naturally produces the correct output size2. Direct window function lookup in
smooth
windows[window](window_len)
) with directif/elif
chainsmooth
runtime) and function pointer dereferencing3. Efficient array concatenation
np.concatenate((xb[::-1], x, xt[::-1]))
with pre-allocatednp.empty
buffer and direct slice assignmentsTest case benefits:
The optimizations are particularly effective for the common use case of large signal processing tasks with optional smoothing windows.
✅ Correctness verification report:
🌀 Generated Regression Tests and Runtime
To edit these changes
git checkout codeflash/optimize-periodogram-mgh0yu30
and push.