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
Thanks for all these reports. May I ask you to open a meta/umbrella ticket, something like "missing fast-math optimizations" and link all them there? I think I might consider picking up some. Thanks!
Thanks for all these reports. May I ask you to open a meta/umbrella ticket,
something like "missing fast-math optimizations" and link all them there? I
think I might consider picking up some. Thanks!
Extended Description
clang(trunk) with '--std=c++17 -O3 -march=native -ffast-math' flags for this code:
generates this assembly:
gcc(trunk) with '--std=c++17 -O3 -march=native -ffast-math' flags generates this:
Also if you will increase count of multiplication on sqrt(varible_name), gcc continues generate more optimal code:
clang:
gcc:
The text was updated successfully, but these errors were encountered: