multiple definition of
I'm using Intel Fortran Compiler for Linux to recompile a program originally compiled by Compaq Visual Fortran.A linking problem...
View ArticleProblem with Fortran compiler in ubuntu 15.04
Hello community.I am sorry for not to be an experienced linux user, but I recently acquired Intel Parallel Studio XE, and downloaded the new update 2 for instalation.I installed the cluster edition...
View ArticleUbuntu 15.04 (64) not supported by Intel parallel studio XE 2016 update 2 for...
I am interested in installing trial version of Intel fortran and C compiler. But while installing using the CLI as well as GUI the programs fails at Prerequisites. For Ubuntu 15.04 which version should...
View Articleforrtl callbacks
forrtl: severe (59): list-directed I/O syntax error, unit -5, file Internal List-Directed Read My question is, is there a way to optionally provide a callback to the forrtl library than will call a...
View Articlecommand not found error
Hi guys,I am pretty a new learner in Fortran. I am running a code in Fortran 90 on linux. I am using gfortran -macmodel=medium -o file silename.f90 to compile the code and making it executable. After...
View Articleintrinsinc REAL & ifort 16.0.2 - bug?
Here is a small code:PROGRAM test IMPLICIT NONE INTEGER, PARAMETER :: wp=KIND(1.0d0) REAL(wp), ALLOCATABLE, DIMENSION(:) :: rr COMPLEX(wp), ALLOCATABLE, DIMENSION(:) :: cc INTEGER :: n n=1000000...
View Articleifort 16.0.0.109 compilation fails with -static
I am trying to compile with -static; however this fails at the load stage even for the simplest little program (omitting -static works fine)print *,'hello' endifort -static hello.f90 gives the...
View Articleifort 16.0.2: no more targeting to elemental functions; Was it a feature, not...
Hi,Until lately I was using function pointers to alias different elemental procedures sharing the same abstract interface. Obviously that's forbidden according to the standard but allowed until the...
View Articleopenmp and type bound procedures
Hi there,the following example compiles, but it crashes if I set the thread number > 1Module ModClassOne Type :: ClassOne Real(kind=8), Allocatable, Dimension(:,:) :: tmp contains Procedure, Pass ::...
View ArticleWrong result depending on order of component in DT
Hi,The following code creates wrong outputs.! Compilation & excecution: ifort main.f90 ; ./a.out Module Universal_Class implicit none Type ,abstract :: Universal_Type End Type End Module Module...
View Articlecompiling 32 bit sequentially on 64 OS
I want to compile staticaly a 32 bit source code sequentially on 64 bit OS (Ubuntu 14.04) using ifort V-16 (parallel)pl give the detailed commandanand
View ArticleAttempting to read a record with a smaller array length
Hi everyone,I have a very strange problem while reading a previously written file. I write an unformatted file using the following code !...... SOME PREVIOUS CODE COMPLEX(KIND=8), ALLOCATABLE,...
View ArticleInterop C and Fortran problem
I cannot figure out, why I am not able to pass len argument correctly into c function from fortran (gfortran + gcc handle this code without any obvious problem)simple C function#include...
View ArticleRelocation truncated to fit
Hi,I tried to increase the size of some arrays in COMMON, but when I compile the code I got many messages like this:for_diags_intel.c:(.text+0x13aa): relocation truncated to fit: R_X86_64_PC32 against...
View Articlemakefile can't find ifort, ifort -v returns a license error
I installed Intel(R) Parallel Studio XE Cluster Edition on my system running Ubuntu 14.04.4. I updated my .bashrc files to include /home/chris/intel/bin.which ifort returns:...
View ArticleSegfault for array with both firstprivate and lastprivate clauses
In a computational code that manipulates arrays, I want to have OMP sections. One section will write an array to disk, while another section sorts it. To avoid a race condition, I give the array the...
View Articleopenmp seg fault!!???
Hi community,the code below fail with a seg fault when b is 2,000,000 instead of 200,000.Module ModOne Type :: ClassOne contains Procedure, Pass :: One => SubOne End type ClassOne Private :: SubOne...
View ArticleAllocatable dummy argument marked as non-standard in Intel documentation?
I've always thought that dummy arguments are allowed to have the allocatable attribute in standard Fortran (since 2003). I've used it several times and compiled with the -stand flag with no warnings....
View Articlecheck arguments of called subroutines
Hi all,I am wondering if there is a compiler option which enables to check arguments of call subroutines/functions while compiling (argument numbers or event types). Or maybe a run time tool activated...
View Articleifort: command not found
$ source /opt/intel/bin/compilervars.sh intel64 ~$ ifort ifort: command not foundCan anyone tell me why? Many thanksI had installed the parallel_studio_xe_2016_update2 successfully on Ubuntu 14.04 TLS
View Article