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
In wandbox & g++-12.1.0, __builtin_ctz is faster than std::bit::countr_zero when we don't specify -march=native (= without lzcnt). Probably this difference is due to the behavior of x=0 (__builtin_ctz:undefined vs countr_zero:bitwidth).
https://en.cppreference.com/w/cpp/header/bit C++20 provides bit manipulation functions as standard.
We should use these functions when C++20 is enabled
The text was updated successfully, but these errors were encountered: