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