Computes the smallest denormal positive value.
Defined in Header
#include <eve/module/core.hpp>
{
template< eve::floating_value T >
}
constexpr callable_mindenormal_ mindenormal
Computes the smallest denormal positive value.
Definition: mindenormal.hpp:59
Lightweight type-wrapper.
Definition: as.hpp:29
Parameters
x
: Type wrapper instance embedding the type of the constant.
Return value
The call eve::mindenormal(as<T>())
is semantically equivalent to:
T(1.4013e-45f)
if eve::element_type_t<T> is float
T(4.94066e-324)
if eve::element_type_t<T> is double
#include <eve/module/core.hpp>
#include <eve/wide.hpp>
#include <iostream>
int main()
{
wide_ft wxf;
std::cout << "---- simd" << std::endl
double xf;
std::cout << "---- scalar" << std::endl
return 0;
}
Wrapper for SIMD registers.
Definition: wide.hpp:65