File Open Dialog taking a long time to open in debug mode
I'm calling GetOpenFileName to open a file.I have been using this code successfully for many years.Now when I try to call this code in Debug mode it takes several minutes to display the File Open...
View Articlewhere is THIS parameter description
Though I use C++ and use to define classes I have avoided to use it in Fortran up to now.In any case, if one opens the Visual Studio help and type 'this' in the index page a number of entries are...
View ArticleSetting OMP_CANCELLATION to true
Hello,How can I set the OMP_CANCELLATION environment variable to true? Within my code, I tried !$ OMP_CANCELLATION = .TRUE.but the compiler says OMP_CANCELLATION variable is not defined. Other OMP...
View Articleneed trial version to integrate with VS2012 Pro
Is there a trial Fortran compiler download that will integrate with Visual Studio 2012, which I have on trial?
View ArticleUp and Running with intel Fortran
Hello,I am new to intel Fortran. I have installed intel parallel studio XE cluster edition for windows 2017 free edition for students with microsoft vs 2015. I tried to test the FGMRES example....
View ArticleExport Module to dll file
We have a main dll with calculations and in this dll there are have many modules.We want to add a post-processor but this will be placed in a separate dll In this separate dll the idea is to use...
View ArticleFunction Overload
Hi, everyone. There is a problem a I'm not quite understand about optional dummy argument. Here is the code:MODULE Test IMPLICIT NONE TYPE :: MyType INTEGER :: a CONTAINS GENERIC, PUBLIC :: Set =>...
View ArticleError 6633 & error #8284 actual argument and dummy argument problem.
I'm getting a few errors after turning on interface checking and need some help as I'm not an experienced Fortran coder :-)I have the code below that generates the errors #6633 & error...
View Articleerror PRJ0019: A tool returned an error code
Hi,I have been googling this error and found some threads regarding the solutions to fix this error. However, I could not fix it yet.I am running VS2015 with Intel Fortran. When I compile, it gave me...
View ArticleParameterized Derived Type: error #6197: An assignment of different structure...
The code below appears ok, but compiler throws an unexpected error #6197: An assignment of different structure types is invalid:module m implicit none type, abstract :: a(k) integer, kind :: k end type...
View ArticleParameterized Derived Types: a question on structure constructors for types...
Consider the following simple code involving a parameterized derived type (PDT):program p implicit none type :: t(k) integer, kind :: k = 0 end type !type(t) :: foo = t(k=0)() ! <-- This works...
View ArticleOutput problem of parameterized derived type
Hi, there's a problem of outputting parameterized derived type. Assume this:program main implicit none type :: test(l) integer, len :: l = 99 character(l) :: s end type test type(test(10)) :: str =...
View ArticleUsing intel Fortran compiler with cmake
I what to compile a software which use cmake as build system. The project is written in c++, but it need a Fortran compiler. I choosed the intel compiler.While running cmake, it failed. Here is the...
View ArticleWarning #5194: Source line truncated.
I am getting a lot of messages of the type:longfilename.i90(1): warning #5194: Source line truncated.Line 1 of such intermediate file looks like:# 1 "longpath\longfilename.F90"and it exceeds the...
View ArticleHello everybody , i'm PhD student i'm interesting to statistical methods for...
Hello everybody , i'm PhD student i'm interesting to statistical methods for cosmology for that i wanted to install CosmoMC to achieve that i should have as a prerequisite the Intel@Fortran Compiler...
View ArticleFile modifcation time with daylight saving time
I´m retrieving file modification time using type(FILE$INFO):: FileInfo integer(KIND=INT_PTR_KIND( ))Handle !... Handle=FILE$FIRST irc=GETFILEINFOQQ(trim(fname),FileInfo,Handle) if(irc.le.0)then !...
View ArticleDirect access file
Dear all, I would have the following question:1. Under certain circumstances i need to read records who happen to be consecutive: is there any benefit in term of speed to code so that the read is done...
View ArticleCoarray SYNC ALL issue
The following code exhibits a different behavior depending on whether line 3 or 4 is commented out. It seems that the SYNC ALL behavior varies depending on which image 'finishes first'.PROGRAM MAIN...
View ArticleAccess Issues
Hi, everyone. I'd like to suggest the following code:module test1 implicit none type :: a integer :: sa end type a end module test1 module test2 use test1 implicit none type,extends(a) :: b private...
View ArticleMigrating From VS2010 to VS2015
Help!I've recently acquired the latest version of Visual Studio Professional 2015 (at great expense) as Intel Parallel Studio 2017 is no longer supported by VS2010 and I want to keep up to date with...
View Article