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 function template generate_canonical() makes a call to std::log2() to determine the number of calls to the random number generator given (in order to acquire enough entropy):
const int _Ceil = static_cast<int>(_STD ceil(static_cast<_Real>(_Minbits) / _STD log2(_Rx)));
const int _Kx = _Ceil < 1 ? 1 : _Ceil;
Although the number of calls required (_Kx) is a compile-time constant, the call to std::log2() cannot be optimized away even if /fp:fast is specified so that every time we generate a floating-point random number through std::generate_canonical(), which is the case for all the std::*_distribution's instantiated for a floating-point type, we must pay for a cost of a function call to std::log2().
Also, there is another cost for (inlined) std::ceil() followed by a floating-point to int cast.
The incurred cost of totally unnecessary function calls and a cast can be significant for such an application that makes heavy use of, say, a randomized algorithm.
Describe the bug
The function template
generate_canonical()
makes a call tostd::log2()
to determine the number of calls to the random number generator given (in order to acquire enough entropy):STL/stl/inc/random
Lines 268 to 273 in 5be7d49
Although the number of calls required (
_Kx
) is a compile-time constant, the call tostd::log2()
cannot be optimized away even if /fp:fast is specified so that every time we generate a floating-point random number throughstd::generate_canonical()
, which is the case for all thestd::*_distribution
's instantiated for a floating-point type, we must pay for a cost of a function call tostd::log2()
.Also, there is another cost for (inlined)
std::ceil()
followed by a floating-point to int cast.The incurred cost of totally unnecessary function calls and a cast can be significant for such an application that makes heavy use of, say, a randomized algorithm.
STL version
Additional context
Also tracked by DevCom-717452 and Microsoft-internal VSO-976509 / AB#976509.
The text was updated successfully, but these errors were encountered: