What is the different between allocatable and pointer variable?
What is the different between allocatable and pointer variable? integer, allocatable :: i integer, allocatable, dimension(:) :: i integer, allocatable, dimension(:,:) :: i I can use pointer to do the...
View ArticleA possible bug in the compiler - Forrtl: severe (41): insufficient virtual...
A possible bug in the compiler - Forrtl: severe (41): insufficient virtual memoryNote: There was a similar thread recently with a very hot discussion related to the error message 'Insufficient Virtual...
View ArticleStopping BackGround worker Component In VB.net
HiI'm dveloping VB.net program , where I'm using backgroundWorker component to have anther thread. To start the thread I used BackgroundWorkerRun.RunWorkerAsync() ,and to pend this thread I...
View Article64 bit Fortran Compiler?
I am currently using Intel Visual Fortran Compiler 'Professional Edition" (Version 11) within Visual Studio, and I can not compile using 64 bit.Do I need to buy new software? And if so, what is the...
View Articlelocal variables do not release on time
One section of my program is a module with many subroutines. In each subroutine there the same integer variables like 'i,j,k,m'. These variables are used to control the loops in each subroutine,such as...
View Articlewhat is the difference of the local variables in subroutine and function
Sometimes i found the local variables in subroutine was not released after it was executed. How Fortran deal with the local variable in subroutine? Is the local variable in function released as soon as...
View Articlelibrary problem
Hello everyone,I hope that I am at the right forum for my problem.I am using Microsoft Visual Studio 10 express and Compaq Visual Fortran 6.My problem is the following : I have to compile a *.c file...
View ArticleProblem building an F77 program
I'm trying to use and old program in F77, that runs Ok in Compaq Fortran and older Power Station Fortran, but when I tried to run this in Intel Paralel Studio XE 2013 for Windows I have some strange...
View ArticleInitialization of large derived types
I am working on porting some code from CVF to IVF and I am running into a problem initializing some derived types. I have a subroutine that is executed inside a loop. The subroutine has a local...
View ArticleA Problem about the Final Procedure
A Struct Testype2 contained the subobject of Testype1. I defined the final procedure which contain a write statement for both the two Type.case1: I define a allocatable varaiable of testype2, after I...
View ArticleError during compilation involving allocate/deallocate
Hello!I'm getting the following series of errors when compiling. Basically there are three types of errors the repeats during the whole code:This is a sample of the code:ALLOCATE (P(NP))PP=> PAnd...
View ArticleWindowsSdkDir not found
I was using Intel Visual Fortran Compiler 11.1 with Visual Studio 2008 pro and Abaqus 6.10 to write and use subroutines in Abaqus. I had linked it properly and it was working fine before. However,...
View ArticleWill the Intel Fortran deallocate the subobject automatically?
consider the following four conditions:case 1: allocatable variable contains allocatable subobject type :: testype2 type(testype1),allocatable, dimension(:) :: tt1 end type testype2 type(testype2),...
View ArticleQuestion about simple algebra error in intel fortran 90
I have computed the following :-------------------------------real(kind=8) :: x, y, zx = 1.0_8y = 0.9747_8z = x - y---------------------------------but the result is "2.529999999999999E-002", not...
View ArticleExecutable size
Our rather large executable just went from 22MB to 39MB (several developers have added to the code but mostly bug fixes). What should I look for to see what caused the change?IVF 13. Latest update
View ArticleMissed module dependencies: parser error?
Hi everyone,I'm having a strange issue with Intel fortran (2013 XE update2, latest release) under VS2010.The dependency tracking for f90 modules appears to be broken for some particular formatting of...
View Article0xC0000005 Access Violation Writing Location Error
Hi,I am writing a code with large arrays. The code works fine for small matrices but when I go beyond a certain level, the following error pops out:Unhandled exception at 0x77913560 in 3d.exe:...
View ArticleFatal Error on Memory Allocation
I'm working on porting some legacy code from CVF to IVF. I don't have an extensive computer science background, so I was wondering if someone could explain what's happening in the following situation....
View ArticleMissing dll
I am getting the following error when trying to build a fortran project:warning #31001 The dll (mspdb80.dll or mspdb100.dll) for reading and writing the pdb could not be found on your path. This is...
View ArticleNative end-and-continue option breaks quickwatch
Hi,Has anybody else noticed that enabling native edit-and-continue in VS2012 seems to break the watch functionality (both quickwatch and the watch tool window) in fortran projects?Unfortunately I need...
View Article