Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
29241 Discussions

[Solved] ifort / OpenMP / Critical sections : curious bug

laurent_nguyen
Beginner
833 Views
Hello everybody,

I'm facing a curious bug (it takes one year to find it with my colleague). Here an example:

[fortran]program main
implicit none
!$OMP CRITICAL (TOTO)
print *, 'Hello World...'
!$OMP END CRITICAL (TOTO)
end program main



[/fortran]
One year ago, I was using intel 10.1.022 and now we are using intel 11.1.056. This program run. But when I change it like that:

[fortran]program main
implicit none
!$OMP CRITICAL (WRITE)
print *, 'Hello World...'
!$OMP END CRITICAL (WRITE)
end program main





[/fortran]
It bugs with a message: "Segmentation Fault occured".

It seems to be corrected in the last version (11.1.069). I just want to report it.

Best Regards,


0 Kudos
0 Replies
Reply