◆ minlog2denormal
Callable object computing the least value for which eve::exp2 returns a non zero result. Required header:
Parameters
Return value the call
ExampleSee it live on Compiler Explorer #include <eve/constant/minlog2denormal.hpp>
#include <eve/wide.hpp>
#include <iostream>
using wide_ft = eve::wide<float>;
int main()
{
wide_ft wxf;
std::cout << "---- simd" << std::endl
double xf;
std::cout << "---- scalar" << std::endl
return 0;
}
constexpr callable_minlog2denormal_ minlog2denormal Callable object computing the least value for which eve::exp2 returns a non zero result. Definition: minlog2denormal.hpp:57 |