Spin Control Not Working Properly
My RC has: EDITTEXT IDC_PCTYPE,38,48,11,12,ES_CENTER | ES_AUTOHSCROLL | ES_NOHIDESEL | ES_WANTRETURN CONTROL "",IDC_MYSPIN,"msctls_updown32",UDS_SETBUDDYINT | UDS_ALIGNRIGHT |...
View ArticleCompiler Bug
I have found a bug in Intel Fortran for Unix 15.0.1This code which should produce a simple syntax error messagePROGRAM MAINIMPLICIT NONEREAL :: A = 5.0CALL SUB1(A) () END SUBROUTINE SUB1(A)IMPLICIT...
View ArticleDocumentation shortcuts
In prior versions of Intel Parallel Studio you could open the compiler documentation fromStart | All Programs | Intel Parallel Studio ... | Documentation | {select the one you want}This is not present...
View Articleradiobutton caption
Hi, I know it is pilot error but I have a problem. Before I hardly get started, the label on a radiobutton (IDC_GETRS) changes to 3.00000 and I haven't been able to determine how that happened, yet....
View ArticleBug with TASK directive in OpenMP
Hi,this little program cause compiler error when it is compiled with -fopenmp switch.MODULE aM IMPLICIT NONE CONTAINS SUBROUTINE a1(tab1, tab2) REAL, INTENT(IN), DIMENSION(:) :: tab1 REAL,...
View Articlewrite(*,*) syntax not working somehow.
I know it's weird but here is the case.The program I have wants to print out something on screen so I used write(*,*) 'xxxx'. It works perfectly fine before I moved my Fortran compiler to a new WIN 10...
View ArticleLicense does not work for home & office Macs booted from same external drive
I have an external drive that I carry with me and boot from, on my Macs at home and at work. I installed my license for Intel Fortran 2016 update 1 at home. Now at work (on a different Mac but same...
View ArticleOMP: Error #133
Hello everyone,my code written by Fortran95 with OpenMP,When compile with openmp,occured runtime errorOMP: Error #133: Inconsistent THREADPRIVATE common block declarations are non-conforming and are...
View ArticleDO CONCURRENT: iteration-local variables and autoparallelization
Hi, I'm wondering about 2 things concerning the DO-CONCURRENT construct:1. As described in https://software.intel.com/en-us/node/526121 the compiler may automatically distinguish between...
View Articlereading from data file in a loop
Hello Forumplease tell me how to read from a data file in a loop . loop implies its a time data i.e. a block of data, to be read at several time steps. the important concern is how shall the cursor...
View ArticleSUBMODULEs and Visual Studio IDE - blank member drop-down list
With current compiler version 16.0, update 1 and the integration with Visual Studio IDE, the members drop-down list appears blank with source files that make use of SUBMODULEs. I don't know if if this...
View Articleifort 16 ICE: -debug full -O2
newblue4> ifort -coarray ca_check1.f90 newblue4> ifort -coarray -debug full -O2 ca_check1.f90 010101_0catastrophic error: **Internal compiler error: internal abort** Please report this error...
View Articlelist of flags used in -O2 optimization
I have some problems with O2 optimization flags compiling a commercial software. It works with O1, but gives some errors with O2. I would like to try to add O2 flags one-by-one to see which one fails,...
View ArticleMissing parentheses in procedure call triggers internal compiler error
This is the most reduced test case i could come up with:module T type T_1 integer, allocatable :: tab(:) contains procedure :: isize end type contains integer function isize(this) class(T_1),...
View Articlestatic linking to libgcc
Hi there,I want to generate binaries that are independent of libgcc. This can be done by the following compiling options,ifort -O0 -fp-model source -ip -inline-factor=100 -unroll-aggressive x.f90...
View ArticleShould I upgrade Visual Studio?
I am currently using MS Visual Studio 2010 with Intel Fortran compiler 16. I am perfectly happy with this setup. In the release notes, it is written that Visual Studio 2010 is deprecated. Do you...
View Articlehow can I flush write(*,*)?
hi,I read this topic about the flush https://software.intel.com/en-us/forums/intel-fortran-compiler-for-linux...But what if I want to flush a write(*,*) like this? Which argument should I give?ThanksGB
View ArticlePARALLEL SECTIONS FIRSTPRIVATE - bug
MODULE aM IMPLICIT NONE CONTAINS SUBROUTINE a1(n) INTEGER, INTENT(INOUT) :: n INTEGER :: i !$OMP PARALLEL SECTIONS FIRSTPRIVATE(n) !$OMP SECTION !$OMP PARALLEL DO DO i=1, n END...
View ArticleWhy are tools not found?
I have a user that gets the "specified configuration type is missing" message in the command prompt environment for 64 bit. it works fine in 32 bit. They are using VS2010 with PSXE2013-SP1. The...
View ArticleMemory leak with internal WRITE
Hi, by running Valgrind on a program compiled with Intel Fortran (ifort (IFORT) 16.0.0 20150815) I find memory leaks after each internal write operation, and this is (I guess) the cause for malloc...
View Article