Ceci est une ancienne révision du document !


Langage Fortran 90, code parallèle (avec OpenMP)

Le programme ProgPAR_OpenMP.f90 qui affiche Hello World pour chaque thread et en plus, le thread maître affiche le nombre de threads.

ProgPAR_OpenMP.f90
program HELLO
 
INTEGER NTHREADS, TID, OMP_GET_NUM_THREADS,OMP_GET_THREAD_NUM
 
! Fork a team of threads giving them their own copies of variables
!$OMP PARALLEL PRIVATE(NTHREADS, TID)
 
 
! Obtain thread number
 TID = OMP_GET_THREAD_NUM()
 PRINT *, 'Hello World from thread = ', TID
 
! Only master thread does this
 IF (TID .EQ. 0) THEN
  NTHREADS = OMP_GET_NUM_THREADS()
 PRINT *, 'Number of threads = ', NTHREADS
 END IF
 
! All threads join master thread and disband
!$OMP END PARALLEL
 
end program
documentation/examples/sommevecvecparopenmp.f90.1598371112.txt.gz · Dernière modification : 2020/08/25 15:58 de 127.0.0.1