-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Possible optimization #21
Comments
Floats are already at the edge in our IQ correction algorithm (120+ dB image rejection). With fast-math, there will be a numerical stability problem in special signal conditions. I use fast-math elsewhere where it's really needed. |
Interesting. I will definitly take a look at that. By the way, what's the reason you have "re-implemented" complex arithmatic? Is complex.h not availble on some platforms you target or did you experience some other problem? |
Of course, platform availability. Have a look on this algo. Fun guaranteed! |
Every time I learn about some new nice DSP tricks it's like Christmas! |
-ffast-math
is not included i-O3
, and SDR doesn't really need strict IEEE754 complience.Something to think about, perhaps.
The text was updated successfully, but these errors were encountered: