mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-04 05:41:33 +01:00
16 lines
308 B
Fortran
16 lines
308 B
Fortran
! @@name: copyprivate.1
|
|
! @@type: F-fixed
|
|
! @@compilable: yes
|
|
! @@linkable: no
|
|
! @@expect: success
|
|
SUBROUTINE INIT(A,B)
|
|
REAL A, B
|
|
COMMON /XY/ X,Y
|
|
!$OMP THREADPRIVATE (/XY/)
|
|
|
|
!$OMP SINGLE
|
|
READ (11) A,B,X,Y
|
|
!$OMP END SINGLE COPYPRIVATE (A,B,/XY/)
|
|
|
|
END SUBROUTINE INIT
|