Module Scope Issue
I have a really specific obscure bug I've found with getting some code to compile with both Intel Fortran (I'm using version 17.0.2.187 Build 20170213) and gfortran 6.2. I apologize in advance for my...
View ArticleMODULO of positive arguments returns negative value
When MODULO is called with two positive arguments, it should always produce a nonnegative value. However, the following code, when compiled with "-xCORE-AVX2 -O1" using ifort 17.0.2, produces a...
View ArticleJoin the Intel® Parallel Studio XE 2018 Beta program
We would like to invite you to participate in the Intel® Parallel Studio XE 2018 Beta program. In this beta test, you will gain early access to new features and analysis techniques. Try them out, tell...
View ArticleJoin the Intel® Parallel Studio XE 2018 Beta program
We would like to invite you to participate in the Intel® Parallel Studio XE 2018 Beta program. In this beta test, you will gain early access to new features and analysis techniques. Try them out, tell...
View ArticleXE2013 Integration Incomplete with VS 2008, VS2012
The newest configuration I can upgrade to at work is XE2013. I've had difficulty with the integration of the 64-bit compiler only. In both VS2008 and VS2012 only the 32-bit compiler is available....
View Articleerror #7002: Error in opening the compiled module file. Check INCLUDE paths.
I am writing a Fortran code for fluid flow in porous media. I am in the debugging stage. The code solves fluid flow equations using LAPCAK.I have several modules that have specific tasks. for example,...
View Articledo concurrent construct in ifort 18.0
ifort 18.0 beta doesn't accept this program: program test implicit none do concurrent(integer :: i=1:10) print*,i end do end program test
View ArticleNested blocks prohibit function assignment
When nesting block statements into each other, it is no longer possible to access the result value of an outer function.Considerprogram nestBlock implicit none contains integer function test()...
View ArticleLink: error #10037: could not find 'link'
Hello,I am using MVS 2015 Community with Intel Parallel studio 2017. When I compiled my Fortran code, I got the following error.Link: error #10037: could not find 'link'I tried with the following...
View ArticleNested blocks mess up variables
According to the manual, a BLOCK construct is itself a scoping unit. At the same time, BLOCKs can be named, and the names must be unique within their scoping unit. This means that by putting blocks...
View ArticleIssues with WRF WPS after complete compile with command line warning #10006
Hi,On a work server we have installed the intel compiler using Parallel studios 2017 update 2 cluster edition. We are most of the way through our 30-day evaluation period with having trouble getting...
View Articlequestion about Modules and COMMON blocks
I am a novice in the use of Modules, and I've got a question. I have a very old code that uses dozens of named common blocks. I am considering replacing each with a Module of the same name. Is that a...
View ArticleSevere regressions in ifort17 and 18
What happened to this once so great compiler? Since v17 and now in 18beta so many things are broken? How could that happen? I will try to come up with a list of issues, but I'm really frustrated. The...
View ArticleUnneeded recompiles
While doing test runs inside the IDE (to allow use of the debugger), several (but not all) of my modules are recompiled, in spite of lack of changes. I remember seeing a post on this topic recently,...
View ArticleDTIO bug?
Intel(R) Visual Fortran Intel(R) 64 Compiler for applications running on Intel(R) 64, Version 17.0.2.187 Build 20170213A code that includes the following works: PRINT 222, B(1.1), B(2.2) 222...
View Articlesegmentation fault with PACK function
$ cat test_pack.f90 program test implicit none integer, parameter :: m = 1050000 integer, allocatable :: a(:),b(:),c(:),d(:) integer :: i allocate(a(0:m),b(0:m),c(0:m),d(0:m)) do i=0,m a(i) =...
View ArticleLinker Conflict libmmt and libcpmtd
Hello,I recently migrated to the latest VS and Intel fortran compiler. I am getting the following errors:Severity Code Description Project File Line Suppression State Error...
View Articleprogram ceated in DVF can run in INTEL Parallel Studio XE Composer Edition...
I created a code that calculates heat transfer and flow fluid in an older version of visual fortran (digital visual fortran 5), but it does not run in a newer versions of windows. I need a new...
View ArticleFOR$IOS_NO_SUCDEV and FOR$IOS_FILNAMSPE
Hello All,Could you possibly tell me when I would get the following errors while calling an OPEN statement? 42severe (42): No such deviceFOR$IOS_NO_SUCDEV. A pathname included an invalid or unknown...
View ArticleCode Coverage tool with large project
My code base is very large and uses many different module files. I am trying to use the code coverage tool with intel 16.0.3.210 on linux to see how much of the code actually gets used. My compile...
View Article