Procedure pointer implementations using module subroutines
Hello,I have been trying to implement a procedure pointer based subroutine to do some numerical calculations. What I want to achieve is to be able to select different subroutines based on a choice...
View Articleerror #5082: Syntax error, found IDENTIFIER
Why I got this?milenko@milenkons:~/novi30s$ ifort -c pr1.f90pr1.f90(16): error #5082: Syntax error, found IDENTIFIER 'PAT' when expecting one of: ( <END-OF-STATEMENT> ; % [ .call subroutine...
View Articlesilent install error ...
I've got Intel Fortran Composer XE 2013 for linux and installing on gentoo. I'm only after the compiler and MKL. Apparently pset has changed up quite a bit now.After creating the INI file which looks...
View ArticleHelp with MPI
Dear all, I was wondering if anyone in here could help me compile a code on a Linux x86_64 system using MPI. I was able to compile and run the code for a single processor using the following...
View Articlemove_alloc from polymorphic causes segfault
Hello again,in the example program below I experienced a problem with the MOVE_ALLOC intrinsic, where the 'TO' argument is polymorphic, but the 'FROM' is not.I am aware that there have been recent...
View ArticleDerived type constructor for extended types does not initialize all fields
Dear Fortran,I have some derived types, types extended from a root (astract) type.I define (scalar) variables using their constructors.When the type is "simple" types (e.g. Point_2D : real :: x, y) it...
View Articlestructure constructors: further problems
Hello,inspired by the recent derived-type constructor issue (http://software.intel.com/en-us/forums/topic/375761), I decided to post some related example code which also behaves differently than I...
View ArticleDownloading IFC version 11.1 and installation guide on Ubuntu
Hi All,Could you please assist me with downloading an IFC version 11.1 or close to that. I am unable to do so. If also you could assist with the installing guidelines in Ubuntu. I am not an exopert but...
View ArticleUndefined symbols for architecture x86_64
Hi,I am coupling a weather forcast model (WRF3.3) and a lans surface model. All the modules are compiled, but i keep getting an error when linking to generate the executable files. Here is the complete...
View ArticleLinking shell script and fortran code
Hi everyone,I am looking for a way which allow me to do some stuff using shell script and return the results from shell scripts to my fortran code and rest of things I would like to know in...
View ArticleInternal WRITE appears not thread safe
I have a routine that is called within a parallel loop. Among others, it is doing an internal WRITE to a string that is thread private.Anyway this WRITE is causing program crashes ("double free or...
View ArticleOpenMP "atomic capture" problem
Hello,the ifort compiler (version 13.1.0) refuses to compile the following code: program t type b integer :: s end type b integer :: v type(b) :: x !$omp atomic capture v = x%s x%s =...
View ArticleOpenMP "atomic capture" problem
Hello,the ifort compiler (version 13.1.0) refuses to compile the following code: program t type b integer :: s end type b integer :: v type(b) :: x !$omp atomic capture v = x%s x%s =...
View Articleforrtl: severe (174): SIGSEGV, segmentation fault occurred
Hi. I encounterd the classical error severe (174): SIGSEGV, segmentation fault occurred when i call the lapack subroutine GESDD on my fortran (90) program with the ifort composer 2013 Linux. !!...
View ArticleIncluding some Openmp compiling and linking options makes matmul() crash
Dear forum,Compiling and linking the following simple code with openmp options produces a crash:Compiling and linking options: -L/opt/intel/composerxe-2013_update2.2.146/mkl/lib/intel64...
View Articlepolym. array of polym. elements having array-valued type-bound func.
Hello,with a program similair to the following example I ran into a very confusing problem:A polymorphic array of pointers (containers with a reference "ptr" pointing to a polymorphic "obj"-type) is...
View ArticleUndefined symbols link problem
I am using ifort V13:mac:~/bmad/bmad_dist/test> ifort --version ifort (IFORT) 13.0.1 20121010 Copyright (C) 1985-2012 Intel Corporation. All rights reserved.Running on OSX...
View ArticleExecution error
After i installed Fortran Compiller for Linux XW 2011 and tried to compile a sample code a see this message::/opt/intel/composer_xe_2013.0.079/Samples/en_US/Fortran/vec_samples$ ifort matvec.f90ifort:...
View ArticleWhich OS and newbie questions.
Hello everybody,I am interested in numerical problems and am trying the evaluate version of the Intel Fortran compiler.I have been an old Fortran 77 user and I would like to switch back to fortran,...
View ArticlePrecision Problem.
Hi,I need some help please. Well I'm writing because I have a problem with the precision when I realize some simple operation or when I read some value from a file. For example in some file I must read...
View Article