summaryrefslogtreecommitdiffstats
path: root/openmp/testsuite/fortran/omp_master_3.f
blob: a222c48c1b1d04a7f0f61c0ca7274c4bdf8d1483 (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
<ompts:test>
<ompts:testdescription>Test which checks the omp master directive by counting up a variable in a omp master section. It also checks that the master thread has the thread number 0 as specified in the OpenMP standard version 3.0.</ompts:testdescription>
<ompts:ompversion>3.0</ompts:ompversion>
<ompts:directive>omp master</ompts:directive>
<ompts:dependences>omp critical</ompts:dependences>
<ompts:testcode>
      INTEGER FUNCTION <ompts:testcode:functionname>omp_master_3</ompts:testcode:functionname>()
        IMPLICIT NONE
        INTEGER omp_get_thread_num
        <ompts:orphan:vars>
        INTEGER nthreads, executing_thread
        INTEGER tid_result ! counts up the number of wrong thread no.
                           ! for the master thread
        COMMON /orphvars/ nthreads, executing_thread, tid_result
        </ompts:orphan:vars>
        tid_result = 0
        nthreads=0
        executing_thread=-1

!$omp parallel
        <ompts:orphan>
        <ompts:check>
!$omp master
        </ompts:check>
        if (omp_get_thread_num() .ne. 0) then
!$omp critical
            tid_result = tid_result + 1
!$omp end critical
        end if
!$omp critical
        nthreads = nthreads + 1
!$omp end critical
        executing_thread=omp_get_thread_num()
        <ompts:check>
!$omp end master
        </ompts:check>
        </ompts:orphan>
!$omp end parallel

        IF ( (nthreads .EQ. 1) .AND. (executing_thread .EQ. 0) .AND.
     &       (tid_result .EQ. 0) ) THEN
          <testfunctionname></testfunctionname> = 1
        ELSE
          <testfunctionname></testfunctionname> = 0
        END IF
      END
</ompts:testcode>
</ompts:test>

OpenPOWER on IntegriCloud