Skip to content
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

[Math] Fix NaN from powf() domain error. #2067

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Commits on Sep 30, 2024

  1. [Math] Fix Nan from powf() domain error.

    This change prevents calling powf(x,y) with negative x.
    
    The SIMD versions using ssePower() already seem to be resistent to
    negative pixel values, but the scalar version was not.
    
    This would cause a SIGFPE on apps that have floating point exceptions
    enabled.
    
    FIXES: AcademySoftwareFoundation#2066
    
    Signed-off-by: Bram Stolk <[email protected]>
    stolk committed Sep 30, 2024
    Configuration menu
    Copy the full SHA
    3c3e867 View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2024

  1. Configuration menu
    Copy the full SHA
    6eff96c View commit details
    Browse the repository at this point in the history