aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/gomp/linear-4.f90
blob: ac532f81000b3cd234ee9a134cee1ecebd4e781a (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
! { dg-do compile }
! { dg-options "-fopenmp" }

module m
implicit none

integer :: i

interface
  integer function bar (x,  y, z)
    integer :: x, y
    integer, value :: z
    !$omp declare simd linear (x : ref, step (1)) linear (y : step (2), uval)
  end

  integer function baz (x, y, z)
    integer :: x
    integer, value :: y, z
    !$omp declare simd linear (x : step (1), uval)
  end

  integer function qux (x, ref)
    integer :: x
    integer, value :: ref
    !$omp declare simd linear (ref (x) : ref) uniform (ref)
  end

  integer function corge (x, ref)
    integer :: x
    integer, value :: ref
    !$omp declare simd linear (x : ref, step (ref)) uniform (ref)
  end

  integer function grault (x)
    integer :: x
    !$omp declare simd linear (x : ref)
  end

  integer function waldo (x)
    integer :: x
    !$omp declare simd linear (x : uval)
  end
end interface

contains

integer function step (x)
  integer, value :: x
  step = x
end

subroutine foo (x, y)
  integer :: x, y
  !$omp simd linear (x: step (y + 1))
  do i = 0, 9
    x = x + y + 1
  end do

  !$omp simd linear (x: val, step (y + 1))
  do i = 0, 9
    x = x + y + 1
  end do

  !$omp parallel do linear (x: step (y + 1))
  do i = 0, 9
    x = x + y + 1
  end do

  !$omp parallel do linear (x: step (y + 1), val)
  do i = 0, 9
    x = x + y + 1
  end do

  !$omp parallel do simd linear (x: step (y + 1))
  do i = 0, 9
    x = x + y + 1
  end do

  !$omp parallel do simd linear (x: val, step (y + 1))
  do i = 0, 9
    x = x + y + 1
  end do

  !$omp parallel do simd linear (x: step (1) + 0)
  do i = 0, 9
    x = x + step (1) + 0
  end do

  block
    integer, parameter :: ref = 1, uval = 2
    !$omp parallel do simd linear (x: ref + 0)
    do i = 0, 9
      x = x + ref + 0
    end do

    !$omp parallel do simd linear (x: uval * 1)
    do i = 0, 9
      x = x + uval
    end do
  end block
end
end