main program:
program main
use omp_lib
use my_module
implicit none
integer, parameter :: nmax = 202000
real(8) :: e_in(nmax) = 0.D0
integer i
call omp_set_num_threads(2)
!$omp parallel default(firstprivate)
!$omp do
do i=1,2
print *, e_in(i)
print *, eTDSE(i)
end do
!$omp end do
!$omp end parallel
end program main
module:
module my_module
implicit none
integer, parameter, private :: ntmax = 202000
double complex :: eTDSE(ntmax) = (0.D0,0.D0)
!$omp threadprivate(eTDSE)
end module my_module
compiled using:
ifort -openmp main.f90 my_module.f90
It gives the Segmentation fault when execution. If remove one of the print commands in the main program, it runs fine. Also if remove the omp function and compile without -openmp option, it runs fine too.
The most probable cause for this behaviour is that your stack size limit is too small (for whatever reason). Since
e_inis private to each OpenMP thread, one copy per thread is allocated on the thread stack (even if you have specified-heap-arrays!).202000elements ofREAL(KIND=8)take 1616 kB (or 1579 KiB).The stack size limit can be controlled by several mechanisms:
On standard Unix system shells the amount of stack size is controlled by
ulimit -s <stacksize in KiB>. This is also the stack size limit for the main OpenMP thread. The value of this limit is also used by the POSIX threads (pthreads) library as the default thread stack size when creating new threads.OpenMP supports control over the stack size limit of all additional threads via the environment variable
OMP_STACKSIZE. Its value is a number with an optional suffixk/Kfor KiB,m/Mffor MiB, org/Gfor GiB. This value does not affect the stack size of the main thread.The GNU OpenMP run-time (
libgomp) recognises the non-standard environment variableGOMP_STACKSIZE. If set it overrides the value ofOMP_STACKSIZE.The Intel OpenMP run-time recognises the non-standard environment variable
KMP_STACKSIZE. If set it overrides the value ofOMP_STACKSIZEand also overrides the value ofGOMP_STACKSIZEif the compatibility OpenMP run-time is used (which is the default as currently the only available Intel OpenMP run-time library is thecompatone).If none of the
*_STACKSIZEvariables are set, the default for Intel OpenMP run-time is2mon 32-bit architectures and4mon 64-bit ones.On Windows, the stack size of the main thread is part of the PE header and is embedded there by the linker. If using Microsoft’s
LINKto do the linking, the size is specified using the/STACK:reserve[,commit]. Thereserveargument specifies the maximum stack size in bytes while the optionalcommitargument specifies the initial commit size. Both can be specified as hexadecimal values using the0xprefix. If re-linking the executable is not an option, the stack size could be modified by editing the PE header withEDITBIN. It takes the same stack-related argument as the linker. Programs compiled with MSVC’s whole program optimisation enabled (/GL) cannot be edited.The GNU linker for Win32 targets supports setting the stack size via the
--stackargument. To pass the option directly from GCC, the-Wl,--stack,<size in bytes>can be used.Note that thread stacks are actually allocated with the size set by
*_STACKSIZE(or to the default value), unlike the stack of the main thread, which starts small and then grows on demand up to the set limit. So don’t set*_STACKSIZEto an arbitrary large value otherwise you may hit the process virtual memory size limit.Here are some examples:
Set the main stack size limit to 1 MiB (the additional OpenMP thread would get 4 MiB as per default):
Set the main stack size limit to 1700 KiB:
Set the main stack size limit to 2 MiB and the stack size of the additional thread to 1 MiB:
On most Unix systems the stack size limit of the main thread is set by PAM or other login mechanism (see
/etc/security/limits.conf). The default on Scientific Linux 6.3 is 10 MiB.Another possible scenario that can lead to an error is if the virtual address space limit is set too low. For example, if the virtual address space limit is 1 GiB and the thread stack size limit is set to 512 MiB, then the OpenMP run-time would try to allocate 512 MiB for each additional thread. With two threads one would have 1 GiB for the stacks only, and when the space for code, shared libraries, heap, etc. is added up, the virtual memory size would grow beyond 1 GiB and an error would occur:
Set the virtual address space limit to 1 GiB and run with two additional threads with 512 MiB stacks (I have commented out the call to
omp_set_num_threads()):In this case the OpenMP run-time library would fail to create a new thread and would notify you before it aborts program termination.