#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 pio_3 = " << constexpr_pio_3<float>() << std::endl;
return 0;
}
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