Commit 9e016218 authored by iker_martin's avatar iker_martin
Browse files

Minor fixes for run scripts. Found bug when using OpenMPI related to MPI_Comm_disconnect.

parent c86587c5
...@@ -555,7 +555,7 @@ void Children_init() { ...@@ -555,7 +555,7 @@ void Children_init() {
malleability_comms_update(mall->intercomm); malleability_comms_update(mall->intercomm);
} }
MPI_Comm_disconnect(&(mall->intercomm)); MPI_Comm_disconnect(&(mall->intercomm)); //FIXME Error en OpenMPI + Merge
} }
//======================================================|| //======================================================||
...@@ -740,7 +740,7 @@ int end_redistribution() { ...@@ -740,7 +740,7 @@ int end_redistribution() {
} }
if(mall->intercomm != MPI_COMM_NULL && mall->intercomm != MPI_COMM_WORLD) { if(mall->intercomm != MPI_COMM_NULL && mall->intercomm != MPI_COMM_WORLD) {
MPI_Comm_disconnect(&(mall->intercomm)); MPI_Comm_disconnect(&(mall->intercomm)); //FIXME Error en OpenMPI + Merge
} }
return local_state; return local_state;
......
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
dir="/home/martini/malleability_benchmark" dir="/home/martini/malleability_benchmark"
codeDir="/Codes/build" codeDir="/Codes/build"
resultsDir="/Results" resultsDir="/Results"
execDir="/Exec"
nodelist=$SLURM_JOB_NODELIST nodelist=$SLURM_JOB_NODELIST
nodes=$SLURM_JOB_NUM_NODES nodes=$SLURM_JOB_NUM_NODES
......
...@@ -6,6 +6,7 @@ ...@@ -6,6 +6,7 @@
dir="/home/martini/malleability_benchmark" dir="/home/martini/malleability_benchmark"
codeDir="/Codes" codeDir="/Codes"
execDir="/Exec"
nodelist="localhost" nodelist="localhost"
nodes=1 nodes=1
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment