You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PROGRAM parallel_do_if
USE OMP_LIB
INTEGER :: I
INTEGER :: N = 0
INTEGER, PARAMETER :: NI = 10
!$OMP PARALLEL DO IF(.false.)
DO I = 1, NI
END DO
!$OMP END PARALLEL DO
END PROGRAM