#include <eve/module/core.hpp>
#include <eve/wide.hpp>
#include <iostream>
template<typename T>
int main()
{
wide_ft wxf;
wide_it wxi;
std::cout << "---- simd" << std::endl
double xf;
std::int16_t xi;
std::cout << "---- scalar" << std::endl
<<
"-> zero(as<std::int16_t>()) = " <<
eve::zero(
eve::as(std::int16_t())) << std::endl
std::cout << "-> constexpr zero = " << constexpr_zero<float>() << std::endl;
return 0;
}
Wrapper for SIMD registers.
Definition wide.hpp:70