Viewing file: cond_op_anylogic_d-2.c (1.25 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* { dg-do run } */ /* { dg-options "-O2 -mavx512vl -mprefer-vector-width=256" } */ /* { dg-require-effective-target avx512vl } */
#define AVX512VL #ifndef CHECK #define CHECK "avx512f-helper.h" #endif
#include CHECK
#include "cond_op_anylogic_d-1.c" #define BINO2(OPNAME, OP) \ void \ __attribute__ ((noipa,optimize ("O2"))) \ foo_o2_##OPNAME () \ { \ for (int i = 0; i != NUM; i++) \ if (b[i] < c[i]) \ j[i] = d[i] OP e[i]; \ else \ j[i] = d[i] - e[i]; \ }
BINO2 (and, &); BINO2 (ior, |); BINO2 (xor, ^);
static void test_256 (void) { int sign = -1; for (int i = 0; i != NUM; i++) { a[i] = 0; d[i] = i * 2; e[i] = i * i * 3 - i * 9 + 153; b[i] = i * 83; c[i] = b[i] + sign; sign *= -1; j[i] = 1; } foo_and (); foo_o2_and (); for (int i = 0; i != NUM; i++) { if (a[i] != j[i]) abort (); a[i] = 0; b[i] = 1; }
foo_xor (); foo_o2_xor (); for (int i = 0; i != NUM; i++) { if (a[i] != j[i]) abort (); a[i] = 0; j[i] = 1; }
foo_ior (); foo_o2_ior (); for (int i = 0; i != NUM; i++) { if (a[i] != j[i]) abort (); a[i] = 0; j[i] = 1; } }
static void test_128 () { }
|