Debugger error for BLOCK / END BLOCK variable.
ConsiderProgram bloky implicit none real :: t(2) t = 1.0 print *, t block real :: t((2) t = 2.0 end block print *, t end programThe Fortran works OK but the debugger thinks t is [2.0, 2.0] after the...
View ArticleShared object run time error when built with OpenMP
I have a Fortran shared object (*.so) that has a run time error when a routine in the shared object is called from the GUI; the shared object is built using the -qopenmp option. Without OpenMP...
View ArticleFaster compilation with Intel® Compiler 18.0 Beta
18.0 beta includes several improvements which may result in compile-time reduction for part of your application. In several cases, such a reduction may be significant, and cut compile time by more than...
View ArticleFaster compilation with Intel® Compiler 18.0 Beta
18.0 beta includes several improvements which may result in compile-time reduction for part of your application. In several cases, such a reduction may be significant, and cut compile time by more than...
View ArticleSegmentation fault when running code compiled with O2 option. Code using...
We are developing a solver based on several structured grids which are connected.For this reason some information is needed only in grid boundaries (face edges vertex).To reduce the memory consumed we...
View ArticleI/O Bug? (32 vs 64-bit Compile)
I'm curious if others would consider the following to be a bug.Given the following code:program test845887 character(12) :: input real(8) :: value input = ' 8.45887E-01' read(input,"(d12.5)") value...
View Articleminor SUBMODULE bug
module WhatLineIsTheError implicit none interface module function thing(it) implicit none integer :: thing integer, intent(in) :: it end function end interface end module WhatLineIsTheError...
View ArticleFix "Error 5 error #6591: An automatic object is invalid in a main...
My code as below: include 'param.h' dimension alpha1(mx) open(99,file='checking.dat')and there is an error: Error 5 error #6591: An automatic object is invalid in a main...
View ArticleRequest to issue an error with a deleted/removed feature when /warn:stderrors...
Starting with FORTRAN 77 (ANSI X3.9 1978), the so-called "extended range of a DO loop" feature has been removed. However when an example code involving this feature is compiled using Intel Fortran...
View ArticleBug in Intel OpenMP?
I believe the following demonstrates a bug in intels openMP parallelization program Console1 use omp_lib implicit none integer :: pn integer :: n,j,NCPUS,i NCPUS=8 call omp_set_num_threads(NCPUS)...
View ArticleFunction returning an array of large size: performance issue with Intel Fortran
I am helping a colleague who has written an engineering program that involves a function returning an array of large size (0.5 to 2 GB typically on Windows x64 OS with 16 GB RAM) and who is noticing...
View ArticleInternal compiler error : Allocatable with Parameterized Derived Types
------ Build started: Project: ICEBug20170521, Configuration: Debug|Win32 ------Compiling with Intel(R) Visual Fortran Compiler 17.0.1.143 [IA-32]... ICE.f90...
View ArticleError extending extended types
I am trying to use the object orientated features of Fortran (Essentially, what I want to be able to do is to get an array of arraies, where each element of the outer array has a different size), and I...
View ArticleDoes seterrormodeqq do anything any more?
I was just trying out the example program 1 for SETERRORMODEQQ in the compiler documentation and it appears that no system prompt appears regardless of the setting of pmode.This is with a console...
View Articlelibmpifort.so incompatible error during compile
Hi,I hit link issue when compiling the program, thank you for the helpld: skipping incompatible /opt/intel/compilers_and_libraries_2017.4.196/linux/mpi/mic/lib/libmpifort.so when searching for...
View Article[Updated] Problems with PSXE 2017 Update 4 and VS 2017 (missing rc.exe and...
Hi,I am trying to install Update 4 with VS 2017. In short, I am facing the "rc.exe not found" error that was also present with VS 2015 but the instructions found on this forum don't seem to apply as I...
View ArticleHelp remembering Fortran syntax
Returning to some old Fortran code after many years absence. At one time I must have known what %VU%PTR_VAL in iptString = SourceArray(Index)%VU%PTR_VAL intLength =...
View ArticleCan not run Fortran 77 program in VS 2013 with XE 2013
Hi,I use Visual Studio with Intel Fortran Compiler to compile the fortran 77 code. This code is correctly written without error when it is compiled by another old version fortran compiler. However,...
View Articlewrong entry in calling a DLL
I have recompiled (with IVF16, 64bits) a dll unchanged from about 2 years previously generated with IVF15 32 bits. The export functions are entry points of the 'main subroutine' as follows:...
View ArticleIntegration failure between Parallel Studio XE 2017 Update 4 Cluster Ed. and...
I first installed VS Community 2017. Then I proceed to install the parallel studio. During the installation, the prerequisite check was fine. The setup detected the correct version of VS. The setup...
View Article