◆ invlog_2
Callable object computing 1/log(2). Required header:
Parameters
Return value the call ExampleSee it live on Compiler Explorer #include <eve/constant/invlog_2.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_invlog_2_ invlog_2 Callable object computing 1/log(2). Definition: invlog_2.hpp:54 |