Stack Overflow and FORALL
I have a simulation software that I am part of the development which runs a variety of different model inputs. For one of the model inputs triggers a stackoverflow crash that only occurs in debug mode....
View ArticleC++ DLL linking a fortran lib under x64
Hi,I am working on converting some working 32bits code to x64. I got the Fortran library to compile / link correctly but when I try to link the C++ part, I am getting some unresoved externals within...
View ArticleMaking an independent duplicate of a linked list
I was wondering about something: does anyone know of a slick way to make a copy of a linked list so that the pointers in the new list don't point back to the original list? Basically, to clone it so...
View ArticleNot working in VS2013
I have long used VB structures to implement complex numbers in VB which can be passed to and from Fortran subs. This has always worked fine in the past. Recently, since upgrading to VS2013 I find...
View ArticleShare data between two DLLs that are called by Main program
I work with a finite element software that allows user-defined functions loaded from DLLs, one DLL per each function. My two functions share the same module, but when turned into DLLs and loaded by the...
View ArticleOpenMP problem
My Fortran program is built as a DLL, and it calls a C function that is also built as a DLL. It is all working fine. I have now started trying to parallelize a critical loop using OpenMP. The C...
View Articlelinking C++ and Fortran in Visual Studio 2010
HelloI have the same problem as described in the following web pagehttps://software.intel.com/en-us/forums/topic/326037I am trying to call the c++ function from Fortran main program. to do that I...
View Articleforrtl severe (408) fort (19) Dummy character variable ...
Hi,I have encountered a problem when porting fortran algorithm to C++.The console has reported forrtl severe (408) fort (19) Dummy character variable 'TASK' has length 60 which is greater than actual...
View ArticleProblem linking fortran files
Hello everyone,I am using intel fortran compiler XE 2013 SP1. I have a set of fortran files while needs to be compiled and get output as .exe. I tried running this on command prompt from Start>All...
View Articleissue with atan() function manual
Intel® Fortran Compiler XE 13.1 User and Reference Guides ..... Results The result type and kind is the same as x and is expressed in radians. The value lies in the range -pi <= ATAN2 (y, x) <=...
View Articleunderstanding extends types and override
Dear FORTRAN users and developers, I am trying to understand the object-oriented concepts in FORTRAN 2003 standards (or later). I have some knowledge in C++ so I think there are some common ideas...
View ArticleCoarray bug?
The following example may just reflect my poor understanding of how coarrays work... or it could be a bug. Compiled with the IVF 15.0 update 0, using VS2013 shell... any comments?PROGRAM TEST IMPLICIT...
View Articlesymbol name in the .lib file
Hi,I have found that when linking a fortran library in C/C++, the subroutine name has changed to ALL uppercase when compiled by Intel Fortran Compiler.For example, the subroutine in fortran subroutine...
View ArticleXEffort for x64??
A number of my applications use the XEffort set of libraries to interface to the Windows API.A number of my clients have migrated to 64-bit MS Office, and so I need to start migrating to x64.I gather...
View ArticleIVF 11.1?
Hello,I have tested this release and found that exactly this release meets my requirements; the latest releases 2011, 2013, 2013SP1 I can't use due to the not existing requirements;can you please tell...
View ArticleAnother coarray issue
Let's assume I have the two following source files:MODULE TEST_MODULE USE,INTRINSIC :: ISO_FORTRAN_ENV IMPLICIT NONE INTEGER,ALLOCATABLE :: A(:)[:] END MODULE TEST_MODULEandPROGRAM TEST USE TEST_MODULE...
View ArticlePorting Fortran/C from Linux to Windows
Hello,I am currently working on a project where we have to port 64-bit Fortran/C code from Linux to Windows. We have chosen the Intel Fortran compiler for Windows because we had a very good experience...
View ArticlelibifportMD.dll is missing
Hi, I am completely new to visual fortran. Every time I restart my computer and try to run my compiled program, it says libifportMD.dll is missing. There are no issues with compiling the program. If I...
View ArticleOpenMP threading analysis
Colleagues,I am threading a large bit of code that repeatedly calls a routine (in the present case, 100's of times). Within that routine I have used an !$omp parallel do structure to thread a double do...
View ArticleInsufficient Virtual Memory on Allocation - again
Hello:I have a user who managed to create a very large case and hit the "Insufficient Virtual Memory" (error 41 on Allocate) error.So, I made up a small test program that allocates and deallocates...
View Article