Returns a logical true if and only if the element is not an infinite value.
constexpr callable_abs_ abs
Computes the absolute value of the parameter.
Definition: abs.hpp:107
constexpr callable_true__ true_
Computes the logical true_ value.
Definition: true.hpp:52
constexpr callable_inf_ inf
Computes the infinity ieee value.
Definition: inf.hpp:58
constexpr callable_is_not_equal_ is_not_equal
Returns a logical true if and only if the element value are not equal.
Definition: is_not_equal.hpp:95
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, -123.345f,
std::cout << "---- simd" << '\n'
<< "<- pf = " << pf << '\n'
float xf = 1.0f;
std::cout << "---- scalar" << '\n'
<< "<- xf = " << xf << '\n'
return 0;
}
constexpr callable_nan_ nan
Computes the IEEE NaN constant.
Definition: nan.hpp:53
constexpr callable_minf_ minf
Computes the -infinity ieee value.
Definition: minf.hpp:60
Wrapper for SIMD registers.
Definition: wide.hpp:65