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
6431137a
Commit
6431137a
authored
Feb 07, 2024
by
iker_martin
Browse files
Minor bug fixed for RED Pthread strat
parent
a589976d
Changes
2
Show whitespace changes
Inline
Side-by-side
Codes/malleability/malleabilityManager.c
View file @
6431137a
...
...
@@ -1001,7 +1001,6 @@ int thread_check(int wait_completed) {
// Comprueba que todos los hilos han terminado la distribucion (Mismo valor en commAsync)
MPI_Allreduce
(
&
comm_state
,
&
all_completed
,
1
,
MPI_INT
,
MPI_MAX
,
mall
->
comm
);
if
(
all_completed
!=
MALL_DIST_COMPLETED
)
return
MALL_DIST_PENDING
;
// Continue only if asynchronous send has ended
//FIXME No se tiene en cuenta el estado MALL_APP_ENDED
if
(
pthread_join
(
mall
->
async_thread
,
NULL
))
{
printf
(
"Error al esperar al hilo
\n
"
);
...
...
@@ -1013,7 +1012,7 @@ int thread_check(int wait_completed) {
MPI_Barrier
(
mall
->
intercomm
);
#endif
if
(
mall_conf
->
spawn_method
==
MALL_SPAWN_MERGE
)
mall_conf
->
times
->
async_end
=
MPI_Wtime
();
// Merge method only
return
end_redistribution
()
;
return
MALL_USER_PENDING
;
}
...
...
Codes/malleability/malleabilityTimes.c
View file @
6431137a
...
...
@@ -47,8 +47,7 @@ void free_malleability_times() {
}
void
malleability_times_broadcast
(
int
root
)
{
malleability_times_t
*
times
=
mall_conf
->
times
;
MPI_Bcast
(
mall_conf
->
times
,
1
,
times
->
times_type
,
root
,
mall
->
intercomm
);
MPI_Bcast
(
mall_conf
->
times
,
1
,
mall_conf
->
times
->
times_type
,
root
,
mall
->
intercomm
);
}
void
MAM_I_retrieve_times
(
double
*
sp_time
,
double
*
sy_time
,
double
*
asy_time
,
double
*
mall_time
)
{
...
...
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