Dear forum,
I actually use Intel composer_xe_2013_sp1.2.144 with openMP.
I separated the following issue from my software project. The program fails to execute in case of using
INQUIRE (FILE= ... , OPENED= ...) together with the -openmp option, see example.
Otherwiese, without -openmp option or without the statement every things works fine.
PROGRAM test
IMPLICIT NONE
CHARACTER(255) :: datei
LOGICAL :: lopen
LOGICAL :: lexists
!
datei = 'dateiname.dat'
!
! This situation work fine in all test cases.
INQUIRE (FILE=datei,EXIST=lexists)
!
! This situation fails if combined with the -openmp option
INQUIRE (FILE=datei,OPENED=lopen)
END PROGRAM test
Can somebody comment on this problem? Thankyou