omp parallel do + omp do should be rejected when compilation time
Hi,The following simple nested OpenMP program(omp parallel do + omp do) can be compiled only with intel compiler.=====$ cat test.f90 program test implicit none integer,parameter :: imax=4, jmax=4...
View Articleld: cannot find -ldl with -fast
When I used the option "-fast" in the mpiifort it got ld: cannot find -ldl error, and could not build the executable file. BTW, the executable file can be built without "-fast" option. In addition,...
View ArticlePointing to concurrent variables
Hi,I'ld like to ask if it's save to point to concurrent variables outside a concurrent construct and use the pointer inside the concurrent construct. E.g.:... integer :: m,n integer, target :: i, k...
View ArticleDeallocate error on pointer obtained through C_F_POINTER
Hi, I am facing an issue with ifort 17.0 (the same code was working fine with ifort 12.1 and 16.0) on a simple code where I try to deallocate the fptr returned by C_F_POINTER from ISO_C_BINDING (I...
View Articledeclared variable type not exported from Fortran module
I am trying to compile a Fortran code including a specific module with the following type declaration and function definition:integer, parameter, public :: intd = selected_int_kind(17) ... contains ......
View ArticleMissing files during code coverage
I have a project that I compile with the intel toolchain. All the .f90 files are compiled to corresponding .o files in the bin directory. When I use the codecov utility I get an HTML with the list of...
View Articleifort GLIBC dependencies
When compiling with ifort 17 on Linux, I notice very different GLIBC dependencies than when compiling with icc. In particular, the following code program main write(*,*) 'Hello world!'...
View Articleusing polymorphic pointer to wrap module
I tried unsuccessfully to use a polymorphic pointer in a Fortran calling program to represent a specific user defined type in a library that users of the library don't necessarily have access to the...
View ArticleCOMMON BLOCK
Hello, i have a doubt.In a program i have 2 differents names for the same COMMON.They have the same name however some variables have different name.My question is R and R1 have the same value or not ?...
View Articleforrtl: severe(111)
HelloMy application is generating the following error:forrtl: severe(111): position number is outside of the valid range, unit 11, file (...)I cannot find any documentation on what this specifically...
View ArticleUsing GDB to debug an MPI program in Fortran (on MAC)
0down votefavorite Hello, I am trying to debug an MPI fortran program using the advice from this post: (Using GDB to debug an MPI program in Fortran). The idea is to place an MPI_BARRIER inside a DO...
View ArticleLining against correct version of libmkl_blacs_*.so
Dear folks,I am about to build an MPI executable with ifort/mpif90, linking it to the MKL and the OpenMPI libs. I came to the point where a serious problem wrt. to linking with the correct version of...
View Articlecatastrophic error: **Internal compiler error: segmentation violation signal...
Hi,I received the following error:ifort -qopenmp -c mod_transition.f90mod_transition.f90: catastrophic error: **Internal compiler error: segmentation violation signal raised** Please report this...
View ArticleUnsuccessful OpenMPI configuration
Dear Community,Could you please help me out with the following issue:1. I have installed Intel Package and source compilers (i.e. icc compiler) in my system:...
View ArticleSetting MKL to use with Intel ParallelAccelerator
I am programming in Julia and for Parallel computing i am using ParallelAccelerator.jl package. I was able to setup OpenBLAS with g++. Kindly help me out to set up Intel MKL with g++. I have installed...
View Articleifort 18 beta: severe bug with the SYNC IMAGES statement
I am using ifort 18 beta update 1 on Linux Ubuntu and did observe a severe bug with the SYNC IMAGES statement yet. Can someone confirm that the following program does work with ifort 17 but does not...
View Articleifort: command line warning #10006: ignoring unknown option '-rpath'
I am a student working in atmospheric sciences. I am trying to compile a source code of RegESM-1.0.0. while running the configure command it completes successfully but make and make install program...
View ArticleMissing files during code coverage
I have a project that I compile with the intel toolchain. All the .f90 files are compiled to corresponding .o files in the bin directory. When I use the codecov utility I get an HTML with the list of...
View Articleifort GLIBC dependencies
When compiling with ifort 17 on Linux, I notice very different GLIBC dependencies than when compiling with icc. In particular, the following code program main write(*,*) 'Hello world!'...
View Articleerror #6236: A specification statement cannot appear in the executable section
Hello:I am writing a user subroutine, UMAT, for Abaqus where I need the UMAT subroutine to update and use my own specified stiffness matrix and solution dependent state variables.I am attaching the...
View Article