[mpich] MPICH primary repository branch, master, updated. v3.2b1-38-gc677716
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "MPICH primary repository". The branch, master has been updated via c6777161b2324bd5daaf555b99362d792368a797 (commit) from 36ac1a9da2f1ee4d8204d4a93952d71273d96ae3 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- http://git.mpich.org/mpich.git/commitdiff/c6777161b2324bd5daaf555b99362d7923... commit c6777161b2324bd5daaf555b99362d792368a797 Author: Sameh Sharkawi <[email protected]> Date: Mon Apr 6 13:54:04 2015 -0400 PAMID: Fix CUDA-aware NULL buffer assert (ibm) D203212 Signed-off-by: Coffman <[email protected]> Signed-off-by: Sameh Sharkawi <[email protected]> diff --git a/src/mpid/pamid/src/pt2pt/mpidi_sendmsg.c b/src/mpid/pamid/src/pt2pt/mpidi_sendmsg.c index 0987cfd..ec61b77 100644 --- a/src/mpid/pamid/src/pt2pt/mpidi_sendmsg.c +++ b/src/mpid/pamid/src/pt2pt/mpidi_sendmsg.c @@ -382,6 +382,8 @@ MPIDI_SendMsg_process_userdefined_dt(MPID_Request * sreq, #if CUDA_AWARE_SUPPORT if(!MPIDI_Process.cuda_aware_support_on || !on_device) buf = sreq->mpid.userbuf; +#else + buf = sreq->mpid.userbuf; #endif MPID_assert(buf != NULL); ----------------------------------------------------------------------- Summary of changes: src/mpid/pamid/src/pt2pt/mpidi_sendmsg.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) hooks/post-receive -- MPICH primary repository
participants (1)
-
noreply@mpich.org