Hi all,
I’m triing to run an example code with coarray with oneapi intel compiler on a shared memory system. When I run the code of example on a single image all seems to go ok, but if I set -coarray=shared and -coarray-num-images=6 (or any other number) I’ve the following error:
===================================================================================
= BAD TERMINATION OF ONE OF YOUR APPLICATION PROCESSES
= RANK 8 PID 953 RUNNING AT 41ca5757f459
= KILLED BY SIGNAL: 11 (Segmentation fault)
===================================================================================
===================================================================================
= BAD TERMINATION OF ONE OF YOUR APPLICATION PROCESSES
= RANK 9 PID 954 RUNNING AT 41ca5757f459
= KILLED BY SIGNAL: 11 (Segmentation fault)
===================================================================================
===================================================================================
= BAD TERMINATION OF ONE OF YOUR APPLICATION PROCESSES
= RANK 10 PID 955 RUNNING AT 41ca5757f459
= KILLED BY SIGNAL: 11 (Segmentation fault)
===================================================================================
===================================================================================
= BAD TERMINATION OF ONE OF YOUR APPLICATION PROCESSES
= RANK 11 PID 956 RUNNING AT 41ca5757f459
= KILLED BY SIGNAL: 11 (Segmentation fault)
===================================================================================
This is not due to error proble, the code print only a welcome messages from any images!
I compile the code with the following command:
ifort -O3 -coarray=shared -coarray-num-images=6 hello.f90 -o hello
The compilation seems ok, no error after the command, but if I run it with ./hello I have the previows one error!
anyone have any Idea?
Thank you in advance