#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::setprecision(9) << std::endl
double xf;
std::cout << "---- scalar" << std::endl
std::cout << "-> constexpr sqrteps = " << constexpr_sqrteps<float>() << std::endl;
return 0;
}
constexpr auto sqrt
Computes the elementwise square root of the parameter.
Definition sqrt.hpp:86
constexpr auto eps
Computes a constant to the machine epsilon.
Definition eps.hpp:74
constexpr auto lower
Guarantees a result no greater than the exact mathematical one.
Definition core.hpp:103
constexpr auto upper
Guarantees a result no smaller than the exact mathematical one.
Definition core.hpp:102
Wrapper for SIMD registers.
Definition wide.hpp:94