Consider the following Fortran + OpenMP program.
use ieee_exceptions
implicit none
integer, parameter :: n = 100
real :: nom(n)
integer :: denom(n)
logical :: saved_fpe_mode(size(ieee_all))
integer :: i
nom = 1
denom = 0
call ieee_set_halting_mode(ieee_overflow, .true.)
call ieee_set_halting_mode(ieee_invalid, .true.)
call ieee_set_halting_mode(ieee_divide_by_zero, .true.)
!$omp parallel
print *,"hello from a thread"
!$omp end parallel
call ieee_get_halting_mode(ieee_all, saved_fpe_mode)
call ieee_set_halting_mode(ieee_all, .false.)
!$omp parallel do
do i = 1, n
nom(i) = nom(i) / denom(i)
end do
!$omp end parallel do
nom = min(max(0., nom), 1.)
!$omp parallel
call ieee_set_halting_mode(ieee_all, saved_fpe_mode)
!$omp end parallel
print *, nom
end
Is this code conforming to the joint combination of the Fortran standard and the OpenMP specifications? If yes, is this code supposed to halt or not when executed with multiple threads?
If the code is modified to
It compiles and executes. So, setting the fpu state seems to be thread specific. Probably still worth a bug report.