You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
694 B
24 lines
694 B
! RUN: %S/test_symbols.sh %s %t %f18 -fopenmp
|
|
|
|
! 2.15.3 Data-Sharing Attribute Clauses
|
|
! Both PARALLEL and DO (worksharing) directives need to create new scope,
|
|
! so PRIVATE `a` will have new symbol in each region
|
|
|
|
!DEF: /MainProgram1/a ObjectEntity REAL(8)
|
|
real*8 a
|
|
!REF: /MainProgram1/a
|
|
a = 3.14
|
|
!$omp parallel private(a)
|
|
!DEF: /MainProgram1/Block1/a (OmpPrivate) HostAssoc REAL(8)
|
|
a = 2.
|
|
!$omp do private(a)
|
|
!DEF: /MainProgram1/Block1/Block1/i (OmpPrivate, OmpPreDetermined) HostAssoc INTEGER(4)
|
|
do i=1,10
|
|
!DEF: /MainProgram1/Block1/Block1/a (OmpPrivate) HostAssoc REAL(8)
|
|
a = 1.
|
|
end do
|
|
!$omp end parallel
|
|
!REF: /MainProgram1/a
|
|
print *, a
|
|
end program
|