aboutsummaryrefslogtreecommitdiff
path: root/final/testsuite/fortran/omp_critical.f
blob: 892dd2b767c020564a25c6a074c1053df78ae817 (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
<ompts:test>
<ompts:testdescription>Test which checks the omp critical directive by counting up a variable in a parallelized region within a critical section.

</ompts:testdescription>
<ompts:ompversion>2.0</ompts:ompversion>
<ompts:directive>omp critical</ompts:directive>
<ompts:testcode>
      INTEGER FUNCTION <ompts:testcode:functionname>omp_critical</ompts:testcode:functionname>()
        IMPLICIT NONE
        INTEGER known_sum
        <ompts:orphan:vars>
        INTEGER i,j,myi,myj, sum
        COMMON /orphvars/ sum, myi, myj
        </ompts:orphan:vars>
        sum = 0
        myi = 0
        myj = 500
!$omp parallel
!$omp sections

!$omp section
        DO i = 0 , 499
                <ompts:orphan>
                <ompts:check>
!$omp critical
                </ompts:check>
           sum = sum + myi
           myi = myi + 1
                <ompts:check>
!$omp end critical
                </ompts:check>
                </ompts:orphan>
        END DO

!$omp section
        DO j = 500 , 999
                <ompts:orphan>
                <ompts:check>
!$omp critical
                </ompts:check>
           sum = sum + myj
           myj = myj + 1
                <ompts:check>
!$omp end critical
                </ompts:check>
                </ompts:orphan>
        END DO
!$omp end sections
!$omp end parallel
        known_sum = 999*1000/2
        IF ( known_sum .EQ. sum ) THEN
          <testfunctionname></testfunctionname> = 1
        ELSE
          WRITE (1,*) "Found sum was", sum, "instead", known_sum
          <testfunctionname></testfunctionname> = 0
        END IF
      END
</ompts:testcode>
</ompts:test>