You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have existing code in Intel SIMD SSE2, how can I use API of libsimdpp if the variable I have is in SSE2, for example _mm_set_epi32? Is there any way so that, for example, I can use script such as: int32<4> = add(A, B); where A and B are SSE data type of _mm_set_epi32? Many thanks.
The text was updated successfully, but these errors were encountered:
Thanks for the reply @mtklein . In the documentation here, it's stated that: uint16<N>( const native_type& n ); where n is native SIMD type to construct from. What does it mean by that? Can we use SIMD of SSE2 as n? Many thanks.
Hi,
I have existing code in Intel SIMD SSE2, how can I use API of libsimdpp if the variable I have is in SSE2, for example _mm_set_epi32? Is there any way so that, for example, I can use script such as:
int32<4> = add(A, B);
whereA
andB
are SSE data type of_mm_set_epi32
? Many thanks.The text was updated successfully, but these errors were encountered: