I'm creating and compilind the project with MPI library.
if it running in single machine - all ok if
mpirun N visual_pro - has incorrect finish.
Probably anyone have a samples?
Initial code:
int main
{
MPI_Init( &argc, &argv );
KApplication a;
Backprop *backprop = new Backprop();
a.setMainWidget(backprop);
backprop->show();
return a.exec();
}
after few seconds it finish and in console the massage
One of the processes started by mpirun has exited with a nonzero exit
code. This typically indicates that the process finished in error.
If your process did not finish in error, be sure to include a "return
0" or "exit(0)" in your C code before exiting the application.
PID 16764 failed on node n0 (212.182.18.94) with exit status 1.
Thanks.
|