#include <eve/module/core.hpp>
#include <iostream>
#include <iomanip>
int main()
{
eve::wide wi0 = {-1, 2, -3, -4, 327654, 32765, 32766, 32767 };
eve::wide wu0 = {0u, 1u, 2u, 3u, 4u, 5u, 6u, 7u};
std::cout << std::hexfloat;
std::cout << "<- wf0 = " << wf0 << "\n";
std::cout << "<- wi0 = " << wi0 << "\n";
std::cout << "<- wu0 = " << wu0 << "\n";
std::cout <<
"-> next(wf0) = " <<
eve::next(wf0) <<
"\n";
std::cout <<
"-> next(wf0, wi1) = " <<
eve::next(wf0, wu0) <<
"\n";
std::cout <<
"-> next[wf0 != 0](wf0) = " <<
eve::next[wf0 != 0](wf0) <<
"\n";
std::cout <<
"-> next[pedantic](wf0) = " <<
eve::next[eve::pedantic](wf0) <<
"\n";
std::cout <<
"-> next[saturated ](wi0) = " <<
eve::next[eve::saturated ](wi0) <<
"\n";
std::cout <<
"-> next(wu0) = " <<
eve::next(wu0) <<
"\n";
std::cout <<
"-> next(wi0) = " <<
eve::next(wi0) <<
"\n";
std::cout <<
"-> next(wi0, wu0) = " <<
eve::next(wi0, wu0) <<
"\n";
}
constexpr auto eps
Computes a constant to the machine epsilon.
Definition: eps.hpp:73
constexpr auto nan
Computes the IEEE quiet NaN constant.
Definition: nan.hpp:67
constexpr auto mindenormal
Computes the smallest denormal positive value.
Definition: mindenormal.hpp:70
constexpr auto inf
Computes the infinity ieee value.
Definition: inf.hpp:66
Lightweight type-wrapper.
Definition: as.hpp:29
Conditional expression ignoring the k last lanes from a eve::simd_value.
Definition: conditional.hpp:307
Wrapper for SIMD registers.
Definition: wide.hpp:93