m2m模型翻译
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.

12 lines
234 B

6 months ago
  1. #include <immintrin.h>
  2. #ifdef _MSC_VER
  3. #include <ammintrin.h>
  4. #else
  5. #include <x86intrin.h>
  6. #endif
  7. int main(void)
  8. {
  9. __m128i a = _mm_comge_epu32(_mm_setzero_si128(), _mm_setzero_si128());
  10. return _mm_cvtsi128_si32(a);
  11. }