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

What is this error message(OPENMP)?

weichao_hsu
Beginner
1,151 Views
I got a run-time error:
system error(8): __kmp_create_worker: CreateThread: Not enough storage is available to process this command.
OMP abort: fatal system error detected.
What is that means?
Dennis
0 Kudos
2 Replies
weichao_hsu
Beginner
1,151 Views
For testing, I just addone "PARALLEL DO"directive in my big program.
!$OMP PARALLEL DO
do j=c1,c2
DIAG(j)=1.0_DR/KK(MD(j)-shift)
end do
!$OMP END PARALLEL DO
What makes this error? Any idea?
Dennis
0 Kudos
weichao_hsu
Beginner
1,151 Views
I have solved my problem!!
I set a large value (512000000,512MB) to Linker->System->Stack Reserve Size.Now it is 64000000(64MB) and works fine.
Dennis
0 Kudos
Reply