1
1

Merge pull request #3635 from wlepera/fix/ibm/155305

MPI_Sendreceive_replace data error with > 2k msg
Этот коммит содержится в:
Josh Hursey 2017-06-01 14:38:01 -05:00 коммит произвёл GitHub
родитель d520c24f3a a7c9c4aef3
Коммит 1665d771a6

Просмотреть файл

@ -12,6 +12,7 @@
* Copyright (c) 2010-2012 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2015 Research Organization for Information Science
* and Technology (RIST). All rights reserved.
* Copyright (c) 2017 IBM Corporation. All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
@ -116,6 +117,7 @@ int MPI_Sendrecv_replace(void * buf, int count, MPI_Datatype datatype,
rc = OMPI_ERR_OUT_OF_RESOURCE;
goto cleanup_and_return;
}
iov.iov_len = packed_size;
}
max_data = packed_size;
iov_count = 1;