Interpretation of nested WHERE
Hi,I am trying to understand if my interpretation of nested WHERE blocks is incorrect or if the compiler is producing an incorrect execution.I encountered numerical floating point exceptions in a large...
View ArticleCalling Fortran From C++ (64 bit)
I am converting a C++/Fortran application from 32 bit to 64 bit Windows and need to call a Fortran subroutine with no arguments from c++. This works fine in 32 bit but in 64 bit I receive an...
View ArticleInstallation failure
I downloaded parallel_studio_xe_2016_composer_edition_for_fortran_setup.exe on my windows 7 64 bit desktop and the installation is not successful saying that only dos command will work instead of GUI....
View ArticleIs there a limit on number of call's to BACKSPACE command?
While reading through a rather large text file (~46 Gb), a little less than halfway through the snippet of code shown below crashes. The variable IFTLFMT is a flag for indicating if the file being...
View ArticlePassing a fixed length string from C++ to Fortran subroutine
I want to pass a fixed length string from C++ to Fortran subroutine, and assign it to a string within that subroutine (to be used elsewhere), and am having some difficulty.Below is the shortened code....
View ArticleHandles leak on new Visual Fortran Compiler 16.0
For example, simple code: program handlesleak implicit none integer(4) :: i do i=1, 100 open(1, file = 'test.txt') write(1,*) i close(1) enddo end program handlesleak1. Then compile by Visual Fortran...
View ArticleWorking with real data
Please, someone could explain me how to get a real data from an edit box, when working with Windows Applications.Sincerely,Carlos Santos
View ArticleError popup when right clicking on a project in VS2013
I just installed parallel studio 2016. When I open VS and right click on a fortran project, I get the popup in the attached jpg. If I click ok, things work anyway, and I get the right click menu, but...
View Articlestdcall bind(c) docs error
ATTRIBUTES STDCALLIntel Fortran does not support use of STDCALL with BIND(C) at this time, so if you are interfacing to STDCALL routines (Windows on IA-32 architecture only), you must continue to use...
View ArticleLinking static lib in VS2012 and IVF XE2013
How to link static library .lib to executable program?Documentation tells about VS2008 and 2010 only.When I place my .lib file into folder with source files and include it into project compiler gives...
View ArticleUsing modules increases build time
Hello!It is known the use of modules is a more modern approach than using global subroutines. But if the project is large and includes many files, the compilation process after some changes in modules...
View ArticleDeleting records from a sequential formatted file
My program creates a file of type sequential formatted that look similar to this:$KEYWORD word1 word2 : wordlast $END $COMMENTS This is a free-form section containing text of various user comments...
View ArticleVS Integration XE2016 / Submodule
compiling with submodules we not get .mod and .smod files. When you clean to do a fresh build (clean) the .smod files are not deleted and I am guessing that they should be. Perhaps it is not...
View ArticleReplacing the first record in a sequential formatted file
This is perhaps an "add on" to dboggs query "Deleting records from a sequential formatted file". I have a sequential formatted file with an initial "record" which has the number of records in the...
View ArticleVery Slow Compilation under VS 2013 plus PSXE 2016
Hi Steve,I have to machines one with VS 2008 and Intel Parallel Studio XE 2013 and the other one with VS 2013 and Intel Parallel Studio XE 2016. When I compile identical Fortran codes in these two...
View ArticleNot able to debug in to Fortran Static library code
My environment: VS2013 and Intel Visual Fortran Composer XE 2013 SP1 I've a C++ project, which calls the functions in statically linked Fortran library. When I run the main program, it runs correctly....
View ArticleMsVS Build Error "(Platform Toolset = 'Intel C++ Compiler 16.0')...not...found."
Running with Microsoft Win10 and Visual Studio 15 Community, and Intel® Parallel Studio XE 2016 Composer Edition. The System Studio Matrix Multiply solution on a clean build gave no errors but build...
View ArticlePardiso hangs in phase 33 when called from an OMP critical region in 16.0
Hi all,I suspect this is a problem with my code, but I can't figure out what the issue is...I've been using similar code for a while now, and its worked fine until I installed 16.0, however it now...
View ArticleIs there any way to detect busy cores in OpenMP?
HeyI have a program where you can specify how many cores you want to run the program on, and often it turns out that people just run the program on a few cores.The problem is if 2 people do this on the...
View ArticleDifference compiler f90 (env. UNIX) et ifort (Env. Windows)
Hello, First of all, I am not a professionnel in fortran programming... But hereafter my problem.I have developped a program in which i read an unformated file via:...
View Article