blob: 732cd9179f6e1bb380ce345deceb2f2518d43750 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
/* { dg-do run { target vect_simd_clones } } */
/* { dg-additional-options "-msse2" { target sse2_runtime } } */
/* { dg-additional-options "-mavx" { target avx_runtime } } */
#include <stdio.h>
#include <stdlib.h>
#define N 30
int a[N], a_ref[N], b[N];
#pragma omp declare simd inbranch
int fib( int n )
{
if (n <= 1)
return n;
else
return fib(n-1) + fib(n-2);
}
void fib_ref()
{
int i;
a_ref[0] = 0;
a_ref[1] = 1;
for (i=2; i < N; i++)
a_ref[i] = a_ref[i-2] + a_ref[i-1];
}
int main(void)
{
int i;
#pragma omp simd
for (i=0; i < N; i++)
b[i] = i;
#pragma omp simd
for (i=0; i < N; i++)
a[i] = fib(b[i]);
fib_ref ();
for (i=0; i < N; i++)
if (a[i] != a_ref[i])
abort ();
return 0;
}
|