mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-04 05:41:33 +01:00
26 lines
576 B
Fortran
26 lines
576 B
Fortran
! @@name: copyprivate.4f
|
|
! @@type: F-fixed
|
|
! @@compilable: yes
|
|
! @@linkable: no
|
|
! @@expect: success
|
|
SUBROUTINE S(N)
|
|
INTEGER N
|
|
|
|
REAL, DIMENSION(:), ALLOCATABLE :: A
|
|
REAL, DIMENSION(:), POINTER :: B
|
|
|
|
ALLOCATE (A(N))
|
|
!$OMP SINGLE
|
|
ALLOCATE (B(N))
|
|
READ (11) A,B
|
|
!$OMP END SINGLE COPYPRIVATE(A,B)
|
|
! Variable A is private and is
|
|
! assigned the same value in each thread
|
|
! Variable B is shared
|
|
|
|
!$OMP BARRIER
|
|
!$OMP SINGLE
|
|
DEALLOCATE (B)
|
|
!$OMP END SINGLE NOWAIT
|
|
END SUBROUTINE S
|