Can the dummy argument of a PURE subroutine with INTENT(OUT) attribute be...
The following code compiles with no errors or warnings with the latest Intel Fortran compiler 2015, update 2 even with -stand compiler option: pure subroutine foo(val) class(*), allocatable,...
View Articlefp-model and other arguments
I'm compiling a large program with the new 15.0.2 compiler, where we previously used 12.0.4. Since we need to ensure our results are identical with the optimized and non-optimized version, we...
View ArticleSourced allocation problems in 15.0.1
Dear all,the 15.0.1 ifort compiler produces errors on the following snippets. Are these errors still present in 15.0.2 ?If someone can give advice, this would help me to decide whether I have to check...
View ArticleAggregate profiling data collected by -profile-functions in the compiler flag
Hi All,I intend to profile the Community Earth System Model (CESM) climate application. I am running this MPI code on 8 nodes (each with 16 core processors and hence entirely 128 processors and I run...
View ArticleCannot find ifort XE 15 in Xcode6.2
Hello, I've installed ifort 15 (and Xcode6.2 with command line tool) and have followed the instructions on https://software.intel.com/en-us/node/524635. to build a fortran file. When I'm suggested to...
View Articleinternal error: derived type containing parameterized derived type
In my case, I have a standard derived type that contains a parameterized derived type. I am not certain that this is legal, but at any rate compiling gives an internal error. I have attached simplified...
View Articlechange run time just for a line
Dear all,I wrote a very complex code. I mean a code with many subroutines and functions. I used to worked fine. Last few days I noticed that the code became very very slow. After that I noticed that...
View ArticleMac OS X, Problems passing COMMON with a shared library.
I have the program:PROGRAM main USE GLOBAL IMPLICIT NONE CALL open_f() print*,'In test',flags(1), ACC_TRUNC_F ENDand I create a shared library that contains the GLOBAL module:MODULE GLOBAL...
View Articleifort 15: Internal compiler error
ifort -c -coarray cgca_m1co.f90ifort -c -coarray -debug full -free -fPIC -warn all cgca_m2stat.f90 cgca_m2stat.f90: catastrophic error: **Internal compiler error: segmentation violation signal...
View ArticleIntel 15.0.2 OMP Runtime Error
I received the following error while running a Fortran code in parallel:OMP: Error #13: Assertion failure at kmp_runtime.c(1592). OMP: Hint: Please submit a bug report with this message, compiler and...
View ArticleUsing -openmp and the effect of -auto in preparing a serial code to use OPenMP
Hi all,I have a large serial code (>15k line of code) with COMMONs blocks. I wanted to start transffering some time consuming loops to work under OpneMP parallelism. After reading some different...
View ArticleI want Non Commercial Intel Fortran Compiler
hi allI am master student I want Non Commercial Intel Fortran Compiler for Linuxany help please Thanks
View ArticleAutomatic pointer targeting
Hello,As common in OO programming, an object "y" of derived type "t" should have access to some other data "x", and we grant them access by storing a local pointer "ptr" to such data. Such pointer...
View ArticleCan I use mkl lp64 vs ilp64 together in a singe program?
In my program, it has used my other libraries.I want to use some blas rountines with integer in 64bit. But I don't want to change the other parts of the program.So, I have to use blas in 64version and...
View ArticleWhat hath "TS 29113/TS 18508" wrought!?
The following simple code compiles fine with the latest Intel Fortran compiler 2015, update 2 but it gives an error with gfortran, a GCC 5.0 development trunk version.The error, as shown below, has to...
View ArticleAggregate profiling data collected by -profile-functions in the compiler flag
Hi All,I intend to profile the Community Earth System Model (CESM) climate application. I am running this MPI code on 8 nodes (each with 16 core processors and hence entirely 128 processors and I run...
View ArticleCalling Java from Fortran using JNI
Hello,I have a program to call Fortran from Java. The codes for func.f95, addC.c, and addJava.java are as follows:FUNCTION add(c, iflag) RESULT(f) INTEGER, INTENT(IN):: c INTEGER, INTENT(OUT):: iflag...
View Articlecompile ifort source code in different folder
Dear all,I would like to compile a fortran code with ifort. The source code files *.f90 are in different sub-folders.how can I do?Thanks
View Articleifort real*4 count bug
Recently, I wrote a piece of codes, like that below. The value of num is larger than the range of integer 32. The result of the tmp should be 2. But in that code, the program gave 0. No matter if use...
View ArticleOverriding type-bound procedures
Hi there,I am trying to make best use of Fortran's OOP features and I have a question regarding the overriding of type-bound procedures.Is there a way in which I can define a type-bound procedure that...
View Article