You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As part of #199 it was found that std::flooris expensive. When used in a tight loop, this extra cost can be non-negligible.
This ticket is about looking into other uses of std::floor and similar FP functions (std::trunc, etc) in Beluga, looking into their potential impact on performance and analyzing possible alternatives.
Feature description
As part of #199 it was found that
std::floor
is expensive. When used in a tight loop, this extra cost can be non-negligible.This ticket is about looking into other uses of
std::floor
and similar FP functions (std::trunc
, etc) in Beluga, looking into their potential impact on performance and analyzing possible alternatives.See these comments for reference:
And the discussion here: https://stackoverflow.com/questions/824118/why-is-floor-so-slow/825916#825916
The text was updated successfully, but these errors were encountered: