mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-04 05:41:33 +01:00
17 lines
379 B
Fortran
17 lines
379 B
Fortran
! @@name: associate.2
|
|
! @@type: F-fixed
|
|
! @@compilable: yes
|
|
! @@linkable: yes
|
|
! @@expect: success
|
|
! @@version: omp_4.0
|
|
program example
|
|
use omp_lib
|
|
integer i
|
|
!$omp parallel private(i)
|
|
i = omp_get_thread_num()
|
|
associate(thread_id => i)
|
|
print *, thread_id ! print private i value
|
|
end associate
|
|
!$omp end parallel
|
|
end program
|