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
The optimization results for std::sinh(0.), std::cosh(0.), and std::tanh(0.) differ between -O1 and -O1 -ffast-math. Specifically, when -ffast-math is enabled, sinh(0.) and cosh(0.) are not folded into constants but instead call the corresponding library functions. This suggests that -ffast-math is restricting optimization rather than enhancing it.