You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
234 B
13 lines
234 B
1 year ago
|
#include <immintrin.h>
|
||
|
#ifdef _MSC_VER
|
||
|
#include <ammintrin.h>
|
||
|
#else
|
||
|
#include <x86intrin.h>
|
||
|
#endif
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
__m128i a = _mm_comge_epu32(_mm_setzero_si128(), _mm_setzero_si128());
|
||
|
return _mm_cvtsi128_si32(a);
|
||
|
}
|