can we convert simd_data_t<U,N> -> simd_data_t<T,N> automatically using gcc vector extensions?
More...
template<typename U, typename T, size_t N>
}
can we convert simd_data_t<U,N> -> simd_data_t<T,N> automatically using gcc vector extensions?
Does this type have operations that semantically correct when lifted to the simd_data_t level?
ein::simd_data_t<T,N> is defined
storage_type< T > __attribute__((__vector_size__(N *sizeof(storage_type< T >)), __aligned__(N *sizeof(storage_type< T >)))) simd_data_t
typename detail::storage_type_impl< T >::type storage_type
The type used to store T in a simd_data_t.
can we convert simd_data_t<U,N> -> simd_data_t<T,N> automatically using gcc vector extensions?
Definition at line 101 of file simd_data.hpp.