File: openmp_34.f90

package info (click to toggle)
lfortran 0.45.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 46,332 kB
  • sloc: cpp: 137,068; f90: 51,260; python: 6,444; ansic: 4,277; yacc: 2,285; fortran: 806; sh: 524; makefile: 30; javascript: 15
file content (25 lines) | stat: -rw-r--r-- 449 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
subroutine omp_func(n)
    use omp_lib
implicit none
integer, intent(in) :: n
integer :: i
call omp_set_num_threads(5)
!$omp parallel  private(i) shared(n)
!$omp do
do i = 1, n
    !omp critical
    print *,omp_get_thread_num()
    print *, "xyz"
end do
!$omp end do
!$omp end parallel

print *, "n = ", n
if (n /= 10) error stop
end subroutine

program openmp_34
integer, parameter :: n = 10
call omp_func(n)
print *, "Done for n = ", n
end program