Returns a logical true if and only if the element value is odd.
constexpr callable_dec_ dec
return the input decremented by 1.
Definition: dec.hpp:71
constexpr callable_one_ one
Computes the constant .
Definition: one.hpp:51
constexpr callable_is_nez_ is_nez
Returns a logical true if and only if the element value is not zero.
Definition: is_nez.hpp:66
constexpr callable_is_even_ is_even
Returns a logical true if and only if the element value is even.
Definition: is_even.hpp:64
Lightweight type-wrapper.
Definition: as.hpp:29
#include <eve/module/core.hpp>
#include <eve/wide.hpp>
#include <iostream>
int main()
{
wide_ft pf = {0.0f, 1.0f, -1.5f, -2.0f};
std::cout << "---- simd" << '\n'
<< "<- pf = " << pf << '\n'
float xf = 1.0f;
std::cout << "---- scalar" << '\n'
<< "<- xf = " << xf << '\n'
return 0;
}
Wrapper for SIMD registers.
Definition: wide.hpp:65