NAMELIST input and &
Hi,Although the following code seems valid:implicit none logical :: l = .FALSE. integer :: i = -1 real :: r = 0. character(5) :: c = '' namelist /input/l, i, r, c open (UNIT = 101, FILE = 'input.dat',...
View ArticleStrange bug with different method of adding
Hi,I have a CFD code whereby in a subroutine, I have to calculate the angle theta_x_rad. I calculate it using:theta_x_rad = - 0.5d0*omega_r_max*(tmp_time2 - (0.5d0*dt_r/Pi)*sin(2.d0*Pi*(tmp_time2 +...
View ArticleDerived type component as do-variable
Hi,The following code is rejected by the ifort compiler.implicit none type t integer :: i = 0 end type type(t) :: a do a%i = 1, 10 print *,'something' enddo endLooking at the standard, I saw no...
View ArticleEQUIVALENCE and PUBLIC access (bug?)
The following code does not compile unless I remove the equivalence statement:module one implicit none save type mytype sequence integer :: i = 42 integer :: j = 67 integer :: k = 76 end type !...
View ArticlePacking an allocatable derived type array gets messed up after deallocating...
Hello All,When an allocatable derived type array (say container) is packed (using the intrinsic pack function) then the content of the resulting array (say packed_container) change when deallocating...
View ArticleMissing quotes in tbbvars.sh
Hello,I am encountering the following problem on tbbvars.sh script of Linux Composer XEopt64/intel/tbb/bin/tbbvars.sh :1 get_library_directory(){ 2 gcc_version_full=`gcc --version | grep "gcc"|...
View Articlempiifort mpiicc
I downloaded intel compiler for mac osx 10.9.3 and how can i get mpiifort mliicc??Thanks to help me and for your patience with me
View ArticleCrashes with unlimithed polymorphics
Hi, this program works in Solaris Studio and for scalars also works in gfortan. It crashes with malloc data curruptions with ifort 14.0.1.> ifort -check -warn -traceback alist.f90> ./a.out...
View ArticleError whem compiling MPI using mpiifort
Hello,I am trying to compile a program to run under an multi-core system. I have set all the dependencies and ran all the setup scripts for the environment variables in order to compile the program...
View ArticleUndefined symbols for architecture x86_64 abinit
Dear developers and users I try to install abinit a software for electronic structure properties but when i try to install it with./configure FC=ifort CC=icc CXX=icpc i found this errorUndefined...
View ArticleUndefined references when building from Makefile
I'm in the process of porting an application from Windows over to Linux, and have written my Makefile as follows:INTEL_LIBS=/opt/intel/composer_xe_2013_sp1/lib/intel64...
View ArticleIntel fortran license file
Hi!I want to install Intel fortran on my Linux, I applied the not-comercial license and I got a SERIAL for mail and a link to download the files.But, for different reasons, I need the LICENSE FILE...
View ArticleDowload of fortran for linux
I have been tried for many times download the non-commercial fortran compiler, but I didn't receive the email of intel so I can't download. What do I do?
View Articlebranch prediction pattern
Hi all,Say I have the code belowProgram Main use ModSubroutines Implicit None Integer :: A, Stat call SubA(A,Stat) if(Stat==0) call SubB(A,Stat) if(Stat==0) call SubC(A,Stat) if(Stat==0) Then...
View Articleintel fortran can't find Xcode during installing
Hi:When I installed intel fortran in my mac, it announced that it can't access Xcode 'Xcode is not installed in the specific file'. But the Xcode.app located there actually. the mac version is : OS X...
View ArticleOctave 3.8.1 with MKL
I am trying to rebuild GNU Octave with the Intel MKL on Ubuntu 14.04uname -aLinux zoli-Precision-WorkStation-T3500 3.13.0-27-generic #50-Ubuntu SMP Thu May 15 18:06:16 UTC 2014 x86_64 x86_64 x86_64...
View ArticleMac OSX coarray support
Are there plans to support shared memory coarrays on Mac OS X? Is there a time line for this yet, or is it too far out to say?Thanks,
View ArticleOpenMP collapse error with stride
I have discovered errors when using the collapse statement with OpenMP using Intel Fortran. Below is test code that produces the errors. The error is that the variable b doesn't increment from 5 to...
View ArticleInlining problem
Hi,I'm trying to take advantage of the optimization reports to improve performance.However, I've got some issues with the use of the "-opt-report" options.I think these issues are related to the...
View ArticleOpenMP version of WRF 3.6 core dump
Hi all,Both single OpenMP and MPI OpenMP version of WRF3.6 core dump, but serial and MPI version works fine.Do you thinks it's a bug in openmp?My env:CentOS6.5 with full updates, 64bitsIntel...
View Article