MPI_BCAST fails with the error access violation only when the input is a string
Hi, all.I am puzzled on MPI_BCAST function. It works okay when I broadcast an integer, but fails when the input is a string. The test enviroment is VS2010+IVF 12 +MSMPI(v5).The error will beUnhandled...
View Articlehow to delete the old edition Intel compiler in MacOSX?
how to delete the old edition Intel compiler in MacOSX?
View Articlerelative ordering of LOGICAL and LOGICAL*1 in common blocks
As I've started several posts: "I've got this legacy application . . ."Among its many "remarkable" features is the use of LOGICAL*1 to store characters on occasion. I will change those to CHARACTER...
View ArticlePassing allocatable array to a subroutine
I'm trying to pass an allocatable array, which is already allocated, to a subroutine. something like this:real(8), dimension(:,:), allocatable :: A allocate (A (6,6)) call subroutine mysub(A)...
View ArticlePermission to access file denied
My application deals with an unformatted direct access file. A condensed outline isOPEN (60, FILE = 'dynbmrts.ts', FORM = 'unformatted', ACCESS = 'direct', RECL = ...) Write data to file Read data from...
View ArticleFrom PowerStation 4.0 to Intel Fortran 12
Hello,At our laboratory we have some old Fortran code which has always been compiled by Power Station 4.0. Now, we want to migrate to Intel Fortran 12, but we are facing some problems. When we create a...
View ArticleBehavior of FPUTC() with newline
Howdy. One more trip into Legacyland. I have reduced my issue to a small test case that works with "ye olde" g77 compiler, but does not work with Intel Fortran, even if I "USE IFPORT" to invoke the...
View ArticleRelation between thread and program stack space
Steve, Colleagues,What is the relationship between the Linker parameter "Stack Reserve Size" as set in Project Properties dropdown, and the value set with kmp_set_stacksize_s()?It is my understanding...
View ArticleUNFORMATTED, ACCESS = SEQUENTIAL
Hi guys,I've got following situation:- there is a code where I open and close a file with form='UNFORMATTED', access='SEQUENTIAL' - the file is open several times with position='APPEND'The settings of...
View ArticleConstant File Parsing
Visual Studio seems to have started going crazy parsing my source files. Everytime I press any key, I see the message at the bottom of the dialog that says "Parse file <filename>". The constant...
View ArticleHow to get multi-colors ?
Of course we can get that with GRAPHICS routines, but what about regular text from Write or Printstatements? Is there a trick that will allow other colors besides the regular white on black stuff?I am...
View ArticleStructure versus TYPE
I stumbled upon this a couple of weeks ago...I have a lot of reused code (via INCLUDE) which uses the STRUCTURE and then RECORD in the routines. I am not aware that RECORD can make use of the INTENT()...
View ArticleUnititialized and SAVE
Stumbled upon an odd situation last week.It is likely that the complier setting on the RedHat5 were using "-save" and the RedHat6 I was porting to was not.The code looks something like this: PROGRAM...
View Articledpbtrf does not work for me on Windows x64 ?
the subroutine dpbtrf in the MKL, it works well on Windows X84, when i compile my project on windows X64, these no wrong report. I run the proiect, but when run at "call dpbtrf " location, it gives a...
View ArticleRun-time error due to narrow format
Hello,I ran into a problem with format strings like "I4.4". Unfortunately I could not reproduce it in a small program and the version of the compiler I am currently using is fairly old, so it may...
View Articlelibiomp5md.dll is missing from your computer
I am building for 64-bit with the /Qparallel and the /Qipo options using Intel Fortran Parallel Studio 2013 SP1 Update 3. When I try to run the executable on another Windows 7 x64 machine, I get a...
View Articleeliminating g77 intrinsic function
In the applications that I have ported from g77 to Intel Fortran, many of the remaining run-time bugs are due to use of g77 intrinsic functions. I am trying to come up with a way to track them down...
View ArticleReferencing to array pointers in fortran
I have acquired the big fortran code and I am trying to refer to the array and output the array values. I can't output the results properly. For example an array of two dimensions array1(:,:) is...
View ArticleIntel visual fortran compiler Version 11.1
Hi Could I get a link to download this old compiler version, I do have license for composer 2013
View ArticleIntel Fortran Composer XE 2015新特性 – Block结构(Block Construct)
在新发布的Intel Fortran Composer XE 2015中英特尔编译器加入了对Fortran 2008标准中引入的Block结构(Block Construct)的支持。Block结构的使用类似于C/C++语言中的复合语句,它使程序员可以更加灵活的创建仅具有局部作用域的数据结构和相关代码。Block结构的语法表示为:[可选名称:] BLOCK [可选的数据声明]...
View Article