AvxDisable.c 669 B

12345678910111213141516171819
  1. #include <immintrin.h>
  2. #include <stdio.h>
  3. #include "pal.h"
  4. #include "pal_debug.h"
  5. int main() {
  6. /* Initialize the two argument vectors */
  7. __m256 evens = _mm256_set_ps(2.0, 4.0, 6.0, 8.0, 10.0, 12.0, 14.0, 16.0);
  8. __m256 odds = _mm256_set_ps(1.0, 3.0, 5.0, 7.0, 9.0, 11.0, 13.0, 15.0);
  9. /* Compute the difference between the two vectors */
  10. __m256 result = _mm256_sub_ps(evens, odds);
  11. /* Display the elements of the result vector */
  12. pal_printf("Result: %d %d %d %d %d %d %d %d\n", (int)result[0], (int)result[1], (int)result[2],
  13. (int)result[3], (int)result[4], (int)result[5], (int)result[6], (int)result[7]);
  14. return 1;
  15. }