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
|
! * This file is part of the Score-P software (http://www.score-p.org)
! *
! * Copyright (c) 2009-2011,
! * RWTH Aachen University, Germany
! * Gesellschaft fuer numerische Simulation mbH Braunschweig, Germany
! * Technische Universitaet Dresden, Germany
! * University of Oregon, Eugene, USA
! * Forschungszentrum Juelich GmbH, Germany
! * German Research School for Simulation Sciences GmbH, Juelich/Aachen, Germany
! * Technische Universitaet Muenchen, Germany
! *
! * See the COPYING file in the package base directory for details.
! *
! * Testfile for automated testing of OPARI2
! *
! *
! * @brief Tests whether specific clauses are found and inserted into the CTC string.
program test8
integer i
integer k
integer, save :: j
!$omp threadprivate(j)
!$omp parallel if(k.eq.0) num_threads(4) reduction(+:k)
!$omp& default(private) shared(i,k)
write(*,*) "parallel"
!$omp do reduction(+:k) schedule(dynamic, 5) collapse(1)
do i=1,4
write(*,*) "do",i
k = k + 1
enddo
!$omp end do
!$omp sections reduction(+:k)
!$omp section
write(*,*) "section 1"
!$omp section
write(*,*) "section 2"
!$omp end sections
!$omp end parallel
!$omp parallel
!$omp task untied
write(*,*) "task"
!$omp end task
!$omp end parallel
!$omp parallel do num_threads(4) reduction(+:k)
!$omp+ schedule(static,chunkif) collapse(1) ordered if(.true.)
!$omp+ default(none) shared(i,k)
do i=1,4
!$omp ordered
write(*,*) "do",i
!$omp end ordered
k = k + 1
enddo
!$omp end parallel do
!$omp parallel sections if((i+k)>5) num_threads(4) reduction(+:k)
!$omp section
write(*,*) "section 1"
!$omp section
write(*,*) "section 2"
!$omp end parallel sections
!$omp parallel workshare if(.true.) num_threads(4) reduction(+:k)
write(*,*) "workshare"
!$omp end parallel workshare
end program test2
|