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