#include <eve/module/math.hpp>
#include <iostream>
int main()
{
eve::wide wf = {0.0, 0.25, 0.5, 2.0, -0.0, -0.25, -0.5, -2.0};
std::cout << "<- wf = " << wf << "\n";
std::cout <<
"-> sinpi(wf) = " <<
eve::sinpi(wf) <<
"\n";
std::cout <<
"-> sinpi[wf != -2.0f](wf) = " <<
eve::sinpi[wf != -2.0f](wf) <<
"\n";
std::cout <<
"-> sinpi[quarter_circle](wf)= " <<
eve::sinpi[eve::quarter_circle](wf) <<
"\n";
}
Conditional expression ignoring the k last lanes from a eve::simd_value.
Definition: conditional.hpp:307
Wrapper for SIMD registers.
Definition: wide.hpp:93