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