#include <eve/eve.hpp>
#include <eve/module/combinatorial.hpp>
#include <iostream>
int main() {
eve::wide n{93, 25, 32, 368, 216, 43, 18, 25};
eve::wide p{42, 30, 27, 1024, 36, 12, 51, 44};
std::cout << "<- wf0 = " << wf0 << "\n";
std::cout << "<- wf1 = " << wf1 << "\n";
std::cout << "<- n = " << n << "\n";
std::cout << "<- p = " << p << "\n";
std::cout <<
"-> lcm(wf0, wf1) = " <<
eve::lcm(wf0, wf1) <<
"\n";
std::cout <<
"-> lcm[wf0 != -2.0f](wf0, wf1) = " <<
eve::lcm[wf0 != -2.0f](wf0, wf1) <<
"\n";
std::cout <<
"-> lcm(p, n) = " <<
eve::lcm(p, n) <<
"\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