Abstract Type/Array of Pointer/Types Strange Non-Reporting Error, Compiles...
Dear All,Hello! A few days ago I downloaded the latest ifort compiler. I've noticed a strange code behavior since the code compiles and runs but it doesn't report any error. After a bit of research...
View ArticleFloating point calculation issue
Hi there, Some time ago I converted a large numerical codebase over to the Intel Visual Fortran compiler. So far we have been unable to make the switch to IVF as we are seeing an unacceptably large...
View ArticleDialog Box
Since I installed the last update for Intel Visual Fortran Composer XE(Visual Studio 2010), I can not create a dialog box as I used to create using Compaq Visual Fortran.Please, can someone help me in...
View ArticleGeneric procedures: non-ambiguous at declaration or use?
Consider this module generics Type T contains procedure :: A procedure :: B generic :: C=>A, B end type T contains subroutine A(X,Y,Z) class(T) X real Y real, optional :: Z end subroutine...
View ArticleCompiler bug - stream formatted nonadvancing read makes up 0x2000 character
Hello I'd like to report a possible bug in Intel Fortran compiler, I was using: Intel(R) Visual Fortran Compiler XE for applications running on IA-32, Version 14.0.2.176 Build 20140130 but the same...
View ArticleLong compilation time for recursive data structure access
Hi Steve,I am seeing very long compilation times, both debug and release, for routines where I am accessing recursive data structures in a certain way.I have a Type like this: Type XYPlot...
View Articlequick question about compiler vendor supplied modules on *NIX
Question: Are there any compiler vendor supplied modules other than `ifport ifnls ifcore ifposix` that one would anticipate a user calling if they are writing native (not cross-compiled) Fortran on a...
View ArticleProblem finding EntryPoint in generated dll
There is Fortran code from Stark, P.B., and R.L. Parker I build it on Visual Studio 2010 uing Fortran Compiler (Compóser XE 2011)Original code is Fortran subroutine bvls(key, m, n, a, b, bl, bu, x,...
View ArticleFiles as Objects / A comment for discussion
Dear All,Since Fortran tends to be more and more object-oriented, I consider to be useful to have some kind of default objects that are related to external files. For example a default type...
View ArticleDll can’t be recognized unless in system directories when called from VBA.
Hi All,I built a 32-bit DLL with Visual Fortran V11.1.067 within Visual Studio 2008 on my computer. The program is supposed to work like this:EXCEL VBA (32-bit) calls “C:\Test\AA.dll” via the absolute...
View ArticleExceptions Handling
Dear all,I'm currently rewritting an old FORTRAN program, and I would like to have a clean exception handling, such as the try {} catch {} in C++.Using my own exceptions, I would be able to generate...
View ArticlePerils of constants as arguments
I am writing a subroutine intended for redistribution to other coders in a static library:Subname (irow, icol, ra, rb, ...) : IF (irow == 0) irow = INT(ra) IF (icol == 0) icol = (..something..)...
View ArticleWhat is the minimum version that supports allocatable arrays of polymorphic...
I have some code I use for analysis that makes use of allocatable arrays of polymorphic types in the following way:One derived type contains an allocatable array of a polymorphic type cm1_base, where...
View Articleerror #7976: An allocatable dummy argument may only be argument associated...
I am a beginner of fortran, now I have a code which debugging with error 7976. Program test_main implicit none integer NP,ele_n,NE,NNE,npt,num integer,pointer :: ele_concentrate( : ),ele_c( :...
View ArticleIs it possible to automate the "Attach to Process" tool?
Hello,I am using Intel Composer XE 2013 under MVS 2010. I have built a Solution with CMake in Debug mode. The solution is made up of several Fortran projects (say, app1.exe, app2.exe, ...). CMake also...
View ArticleRunning system commands without opening a shell window
My application is compiled with /SUBSYSTEM:WINDOWS, and I want to call some system commands without having a shell window appear. SYSTEM and SYSTEMQQ open the shell window. RUNQQ doesn't open a shell...
View ArticleError 6731 in version 11.1.072
The following code gives error 6731 Object is not a pointer object XG.I understand this was fixed in 2011, but is there a workaround in 11.1? program testsize real,allocatable,target :: XG__(:,:)...
View ArticleXE 2013 sp1
I am trying to compile Ncar Graphics:http://ngwww.ucar.edu/This has worked in the past, but I can't get it to work using XE 2013 SP1. I went back to an earlier version of the compilers and was able to...
View ArticleCreate a Executable Using Intel Visual FORTRAN XE
I am looking for steps for creating a simple FORTRAN executable file using Intel Visual FORTRAN XE. I want to run the executable at the Windows 7 Command Prompt. I don't needed to create any GUI for...
View Article