Conversation
Summary of ChangesHello @wizenink, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request fixes a bug in the Highlights
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
The pull request correctly updates the window functions to use periodic formulas instead of symmetric ones, which resolves the COLA violation issues. I've added a few suggestions to improve performance by moving constant calculations out of the loops within the generate_window function. These changes will make the code more efficient.
| WindowType::Hamming => (0..size) | ||
| .map(|i| { | ||
| let i_t = T::from(i).unwrap(); | ||
| let size_m1 = T::from(size - 1).unwrap(); | ||
| T::from(0.54).unwrap() - T::from(0.46).unwrap() * (two * pi * i_t / size_m1).cos() | ||
| let size_t = T::from(size).unwrap(); // Use N, not N-1 for periodic window | ||
| T::from(0.54).unwrap() - T::from(0.46).unwrap() * (two * pi * i_t / size_t).cos() | ||
| }) | ||
| .collect(), |
There was a problem hiding this comment.
Similar to the Hann window, constant values can be calculated outside the map closure for better performance. Also, using named constants for magic numbers like 0.54 and 0.46 improves readability.
WindowType::Hamming => {
let size_t = T::from(size).unwrap(); // Use N, not N-1 for periodic window
let a0 = T::from(0.54).unwrap();
let a1 = T::from(0.46).unwrap();
(0..size)
.map(|i| {
let i_t = T::from(i).unwrap();
a0 - a1 * (two * pi * i_t / size_t).cos()
})
.collect()
},
I was using the symettric window functions instead of periodic, which introduced some ripple and caused COLA violations to trigger for perfectly valid COLA configurations