#include <eve/module/math.hpp>
#include <eve/wide.hpp>
#include <iostream>
#include <iomanip>
template<typename T>
int main()
{
wide_ft wxf;
std::cout << "---- simd" << std::setprecision(9) << std::endl
double xf;
std::cout << "---- scalar" << std::endl
std::cout << "-> constexpr invlog_2 = " << constexpr_invlog_2<float>() << std::endl;
return 0;
}
Wrapper for SIMD registers.
Definition wide.hpp:70