Viewing file: reduc_3.c (1.74 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* { dg-do compile } */ /* { dg-options "-O2 -ftree-vectorize -ffast-math" } */
#include <stdint.h>
#define NUM_ELEMS(TYPE) (32 / sizeof (TYPE))
#define REDUC_PTR(DSTTYPE, SRCTYPE) \ void reduc_ptr_##DSTTYPE##_##SRCTYPE (DSTTYPE *restrict sum, \ SRCTYPE *restrict array, \ int count) \ { \ *sum = 0; \ for (int i = 0; i < count; ++i) \ *sum += array[i]; \ }
REDUC_PTR (int8_t, int8_t) REDUC_PTR (int16_t, int16_t) REDUC_PTR (int32_t, int32_t) REDUC_PTR (int64_t, int64_t)
REDUC_PTR (_Float16, _Float16) REDUC_PTR (float, float) REDUC_PTR (double, double)
/* Float<>Int conversions */ REDUC_PTR (_Float16, int16_t) REDUC_PTR (float, int32_t) REDUC_PTR (double, int64_t)
REDUC_PTR (int16_t, _Float16) REDUC_PTR (int32_t, float) REDUC_PTR (int64_t, double)
/* { dg-final { scan-assembler-times {\tuaddv\td[0-9]+, p[0-7], z[0-9]+\.b\n} 1 } } */ /* { dg-final { scan-assembler-times {\tuaddv\td[0-9]+, p[0-7], z[0-9]+\.h\n} 2 { xfail *-*-* } } } */ /* { dg-final { scan-assembler-times {\tuaddv\td[0-9]+, p[0-7], z[0-9]+\.s\n} 2 { xfail *-*-* } } } */ /* { dg-final { scan-assembler-times {\tuaddv\td[0-9]+, p[0-7], z[0-9]+\.d\n} 2 { xfail *-*-* } } } */ /* We don't yet vectorize the int<-float cases. */ /* { dg-final { scan-assembler-times {\tuaddv\td[0-9]+, p[0-7], z[0-9]+\.h\n} 1 } } */ /* { dg-final { scan-assembler-times {\tuaddv\td[0-9]+, p[0-7], z[0-9]+\.s\n} 1 } } */ /* { dg-final { scan-assembler-times {\tuaddv\td[0-9]+, p[0-7], z[0-9]+\.d\n} 1 } } */ /* { dg-final { scan-assembler-times {\tfaddv\th[0-9]+, p[0-7], z[0-9]+\.h\n} 2 } } */ /* { dg-final { scan-assembler-times {\tfaddv\ts[0-9]+, p[0-7], z[0-9]+\.s\n} 2 } } */ /* { dg-final { scan-assembler-times {\tfaddv\td[0-9]+, p[0-7], z[0-9]+\.d\n} 2 } } */
|