Add compile command to each testcase
[gcc-vect-testsuite.git] / vect-double-reduc-5.c
blob48457628f975ed614fa3aefee7895c9bac0a6d6a
1 /* { dg-require-effective-target vect_int_mult } */
3 #include <stdarg.h>
4 #include "tree-vect.h"
6 #define K 32
8 signed short in[2*K][K] __attribute__ ((__aligned__(__BIGGEST_ALIGNMENT__)));
9 signed short coeff[K][K] __attribute__ ((__aligned__(__BIGGEST_ALIGNMENT__)));
10 int out[K];
11 int check_result[K] = {642816,660736,678656,696576,714496,732416,750336,768256,786176,804096,822016,839936,857856,875776,893696,911616,929536,947456,965376,983296,1001216,1019136,1037056,1054976,1072896,1090816,1108736,1126656,1144576,1162496,1180416,1198336};
13 __attribute__ ((noinline)) void
14 foo ()
16 int sum = 0, i, j, k;
18 for (k = 0; k < K; k++)
20 sum = 0;
21 for (j = 0; j < K; j++)
22 for (i = 0; i < K; i++)
23 sum += in[i+k][j] * coeff[i][j];
25 out[k] = sum;
29 int main ()
31 int i, j, k;
33 check_vect ();
35 for (j = 0; j < K; j++)
37 for (i = 0; i < 2*K; i++)
38 in[i][j] = i+j;
40 for (i = 0; i < K; i++)
41 coeff[i][j] = i+2;
44 foo();
46 for (k = 0; k < K; k++)
47 if (out[k] != check_result[k])
48 abort ();
50 return 0;
53 /* Vectorization of loops with multiple types and double reduction is not
54 supported yet. */
55 /* { dg-final { scan-tree-dump-times "OUTER LOOP VECTORIZED" 1 "vect" { xfail *-*-* } } } */
56 /* { dg-final { cleanup-tree-dump "vect" } } */