Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Iker Martín Álvarez
Proteo
Commits
9e016218
Commit
9e016218
authored
Apr 19, 2023
by
iker_martin
Browse files
Minor fixes for run scripts. Found bug when using OpenMPI related to MPI_Comm_disconnect.
parent
c86587c5
Changes
3
Hide whitespace changes
Inline
Side-by-side
Codes/malleability/malleabilityManager.c
View file @
9e016218
...
...
@@ -555,7 +555,7 @@ void Children_init() {
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() {
}
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
;
...
...
Codes/runTrace.sh
View file @
9e016218
...
...
@@ -7,6 +7,7 @@
dir
=
"/home/martini/malleability_benchmark"
codeDir
=
"/Codes/build"
resultsDir
=
"/Results"
execDir
=
"/Exec"
nodelist
=
$SLURM_JOB_NODELIST
nodes
=
$SLURM_JOB_NUM_NODES
...
...
Codes/runValgrind.sh
View file @
9e016218
...
...
@@ -6,6 +6,7 @@
dir
=
"/home/martini/malleability_benchmark"
codeDir
=
"/Codes"
execDir
=
"/Exec"
nodelist
=
"localhost"
nodes
=
1
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment