From 4d69a71756fe9a6e349ff0e65f2e892f6a621cbe Mon Sep 17 00:00:00 2001 From: Lucas Mello Schnorr Date: Tue, 19 Jan 2016 08:56:20 -0200 Subject: [PATCH] [action replay] verify optional parameters at the same time in alltoall --- src/smpi/smpi_replay.c | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/src/smpi/smpi_replay.c b/src/smpi/smpi_replay.c index bee8307852..d92975d608 100644 --- a/src/smpi/smpi_replay.c +++ b/src/smpi/smpi_replay.c @@ -644,19 +644,15 @@ static void action_allToAll(const char *const *action) { int recv_size = parse_double(action[3]); MPI_Datatype MPI_CURRENT_TYPE2; - if(action[4]) { + if(action[4] && action[5]) { MPI_CURRENT_TYPE=decode_datatype(action[4]); + MPI_CURRENT_TYPE2=decode_datatype(action[5]); } else{ MPI_CURRENT_TYPE=MPI_DEFAULT_TYPE; - } - - if (action[5]){ - MPI_CURRENT_TYPE2=decode_datatype(action[5]); - } - else { MPI_CURRENT_TYPE2=MPI_DEFAULT_TYPE; } + void *send = smpi_get_tmp_sendbuffer(send_size*comm_size* smpi_datatype_size(MPI_CURRENT_TYPE)); void *recv = smpi_get_tmp_recvbuffer(recv_size*comm_size* smpi_datatype_size(MPI_CURRENT_TYPE2)); -- 2.20.1