Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.

OpenMP

malik-s_-maxutov
Beginner
172 Views
Hi Steve,
There is no any message about loops parallelization during the compiling and linking. However, the message about loop parallelization is occur when i'm trying with the /Qparallel key. For examaple, my program looks something like this:
module omp
.........
contains
subroutine findx()
............
! $OMP DO
DO i=1, N
.....
DO J=1, N
......
ENDDO
......
ENDDO
! $OMP END DO
end subroutine findx
end module omp
program main
use omp
.........
! $OMP PARALLEL
DO I=1, K
CALL FINDX()
ENDDO
! $OMP END PARALLEL
..........
end program
0 Kudos
0 Replies
Reply