#include <eve/module/math.hpp>
#include <iostream>
int main()
{
eve::wide wf = {2.0f, 64.0f, 4.0f, 2.0f, 2.0f,
std::cout << "<- wf = " << wf << "\n";
std::cout << "<- wn = " << wn << "\n";
std::cout <<
"-> nthroot(wf, wn) = " <<
eve::nthroot(wf, wn) <<
"\n";
std::cout <<
"-> nthroot[wf != 2.0f](wf, wn) = " <<
eve::nthroot[wf != 2.0f](wf, wn) <<
"\n";
std::cout <<
"-> nthroot[raw](wf, wn) = " <<
eve::nthroot[eve::raw](wf, wn) <<
"\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 minf
Computes the -infinity ieee value.
Definition: minf.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