Bug 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 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 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 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 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 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 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 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 ArticleDebugger 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 Article