summaryrefslogtreecommitdiff
path: root/libgomp/testsuite/libgomp.fortran/loop-transforms/unroll-7.f90
blob: d25f18002aece4aefa0f3d862e2fe131ae8780c5 (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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
! { dg-additional-options "-O0 -cpp" }
! { dg-do run }

#ifndef UNROLL_FACTOR
#define UNROLL_FACTOR 1
#endif
module test_functions
contains
   subroutine copy (array1, array2)
    implicit none

    integer :: array1(:)
    integer :: array2(:)
    integer :: i

    !$omp parallel do
    !$omp unroll partial(UNROLL_FACTOR)
    do i = 1, 100
       array1(i) = array2(i)
    end do
  end subroutine

  subroutine copy2 (array1, array2)
    implicit none

    integer :: array1(100)
    integer :: array2(100)
    integer :: i

    !$omp parallel do
    !$omp unroll partial(UNROLL_FACTOR)
    do i = 0,99
       array1(i+1) = array2(i+1)
    end do
  end subroutine copy2

  subroutine copy3 (array1, array2)
    implicit none

    integer :: array1(100)
    integer :: array2(100)
    integer :: i

    !$omp parallel do lastprivate(i)
    !$omp unroll partial(UNROLL_FACTOR)
    do i = -49,50
       if (i < 0) then
          array1((-1)*i) = array2((-1)*i)
       else
          array1(50+i) = array2(50+i)
       endif
    end do
  end subroutine copy3

  subroutine copy4 (array1, array2)
    implicit none

    integer :: array1(:)
    integer :: array2(:)
    integer :: i

    !$omp do
    !$omp unroll partial(UNROLL_FACTOR)
    do i = 2, 200, 2
       array1(i/2) = array2(i/2)
    end do
  end subroutine copy4

  subroutine copy5 (array1, array2)
    implicit none

    integer :: array1(:)
    integer :: array2(:)
    integer :: i

    !$omp do
    !$omp unroll partial(UNROLL_FACTOR)
    do i = 200, 2, -2
       array1(i/2) = array2(i/2)
    end do
  end subroutine

  subroutine copy6 (array1, array2, lower, upper, step)
    implicit none

    integer :: array1(:)
    integer :: array2(:)
    integer :: lower, upper, step
    integer :: i

    !$omp do
    !$omp unroll partial(UNROLL_FACTOR)
    do i = lower, upper, step
       array1 (i) = array2(i)
    end do
  end subroutine

  subroutine prepare (array1, array2)
    implicit none

    integer :: array1(:)
    integer :: array2(:)

    array1 = 2
    array2 = 0
  end subroutine

  subroutine check_equal (array1, array2)
    implicit none

    integer :: array1(:)
    integer :: array2(:)
    integer :: i

    do i=1,100
       if (array1(i) /= array2(i)) then
          write (*,*) i
          call abort
       end if
    end do
  end subroutine

  subroutine check_equal_at_steps (array1, array2, lower, upper, step)
    implicit none

    integer :: array1(:)
    integer :: array2(:)
    integer :: lower, upper, step
    integer :: i

    do i=lower, upper, step
       if (array1(i) /= array2(i)) then
          write (*,*) i
          call abort
       end if
    end do
  end subroutine

  subroutine check_unchanged_at_non_steps (array1, array2, lower, upper, step)
    implicit none

    integer :: array1(:)
    integer :: array2(:)
    integer :: lower, upper, step
    integer :: i, j

    do i=lower, upper,step
       do j=i,i+step-1
          if (array2(j) /= 0) then
             write (*,*) i
             call abort
          end if
       end do
    end do
  end subroutine
end module test_functions

program test
  use test_functions
  implicit none

  integer :: array1(100), array2(100)

  call prepare (array1, array2)
  call copy (array1, array2)
  call check_equal (array1, array2)

  call prepare (array1, array2)
  call copy2 (array1, array2)
  call check_equal (array1, array2)

  call prepare (array1, array2)
  call copy3 (array1, array2)
  call check_equal (array1, array2)

  call prepare (array1, array2)
  call copy4 (array1, array2)
  call check_equal (array1, array2)

  call prepare (array1, array2)
  call copy5 (array1, array2)
  call check_equal (array1, array2)

  call prepare (array1, array2)
  call copy6 (array1, array2, 1, 100, 5)
  call check_equal_at_steps (array1, array2, 1, 100, 5)
  call check_unchanged_at_non_steps (array1, array2, 1, 100, 5)

  call prepare (array1, array2)
  call copy6 (array1, array2, 1, 50, 5)
  call check_equal_at_steps (array1, array2, 1, 50, 5)
  call check_unchanged_at_non_steps (array1, array2, 1, 50, 5)

  call prepare (array1, array2)
  call copy6 (array1, array2, 3, 18, 7)
  call check_equal_at_steps (array1, array2, 3 , 18, 7)
  call check_unchanged_at_non_steps (array1, array2, 3, 18, 7)
end program