BLOCK construct
This does not appear to be supported.PROGRAM Main INTEGER :: x BLOCK VOLATILE :: x x = 0 END BLOCK END PROGRAM Maingerbil.f90(3): error #5082: Syntax error, found...
View ArticleCan debugger be used with .dlls?
I'm attempting to use the debugger for the first time, and I'm having trouble. I don't know if it's a simple problem, like improper configuration of my project, or if it is indicative of some kind of...
View ArticleAmbiguous error in deallocation on Linux
Hi all,I am pleased to join this very active Intel fortran forum and posting my first issue here.The problem is related to deallocation of the allocated arrays. The same code works seemingly fine on...
View ArticleHandling interrupt signals + logoff/restart/shutdown
I have a console application that is running a calculation and I would like to be able to do certain work like saving unsaved data and properly stopping the calculation if the Windows system is going...
View ArticleProgram crashes caused by bug in free() from libc.so.6
This is not an Intel compiler problem in itself, but I request users of Intel Fortran and Gfortran on Linux x64 systems to try the Fortran program below and reply with details (version of libc.so,...
View Articledeadlock during debug
Hi everybody,I'm trying to find where inside my program appears the first NaN var. So I created the following function:logical FUNCTION testanan(var) implicit none real(8) var if (var /= var) then...
View ArticleUsing both dynamic and static library by fortran
I have a code which is using static libraries and now I wanna to add a dynamic dll library to that. When I import the new dll library I receive the following error:libifcoremt.lib(for_init.obj) : error...
View ArticleDifferent results when threads > 3 with openMP
Hi, I am converting some legacy fortran code into openmp version. It uses some external functions likeinterface function rotTens(x,mat) real,intent(in)::x(6),mat(3,3) real:: rotTens(6) end function...
View ArticleNew ATOMIC constraint in OpenMP 4.0
I ran into an interesting change from OpenMP 3.1 to 4.0: ATOMIC variables can no longer be ALLOCATABLE (I've asked on an OpenMP forum why this change was made). This broke my code when I compiled it...
View ArticleArray-valued function segmentation error
The code below fails with segmentation error unless the arrays "f" and "e" have the same dimension using the Intel Fortran compiler. Appreciate if someone can explain why the array "f" cannot be larger...
View ArticleGet path to "My Documents" folder
Does anyone have a nice way to get the path the user's "My Documents" directory from Intel Fortran?
View ArticleHow do I compile MPI fortran on windows using this product?
Hi, let me premise by saying I'm ling-retard illiterate. I understand how things work but I am not familiar with the lingo of compilers, and software and hence am having a lot of problems. Let me write...
View Articleundefined reference to `dlsym'
Hi, I am compiling a bunch of .f90 files using the below makefile. The error that I get on using -O2 optimization is posted just below that. Can't figure out where the problem is :/The makefile is...
View ArticleIntel Compilers - Supported compiler versions
The following compiler versions are supported:Intel® C++ and Fortran Composer XE 2013 SP1 for Linux* or OS X* (Compiler version 14.0)Intel® C++ and Fortran Composer XE 2013 for Linux* or OS X*...
View Articlecompiler and hardware support status for CAF running on MIC in native mode?
Is my understanding correct, that the current Beta and the upcoming 15.x release of ifort will support Coarrays on MIC (xeon phi)?Will the compiler and hardware be able to generate code that can run on...
View ArticleUse omp_lib for x64 compiling
Steve, Colleagues,I have successfully used OpenMP to create a threaded IA32 version of an executable. The code contains "use omp_lib" since I'm calling a few OpenMP functions. I note that in the...
View Articleerror #7226: An integer pointer variable has been explicitly given a data...
Hi,I am working on compiling some functionnal Win32 code to x64. I am encoutering the following error:error #7226: An integer pointer variable has been explicitly given a data type that is not the...
View ArticleMake static library of modules
I have a code which is using so many modules and now I want to extend it, but I don't want to give the main modules to other developers. As a consequence I decided to make static libraries from the...
View ArticleStack 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 ArticleAllocatable private array in openmp parallel do directive
Hi, I have a problem and I did not find a solution : I want to use parallelism in the free code , but a problem occurred in the allocation of arrays: PROGRAM LMTARTUSE PARA_CONTROL use omp_lib...
View Article