[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.0.4-332-g14b4acc

mysql vizuser noreply at mpich.org
Mon Jul 8 21:50:27 CDT 2013


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  14b4acc7e789de66e68a1224ad11fe1e1b817c34 (commit)
      from  8448badc4099f6b0ded16e02aeb0ecd60178ffa7 (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/14b4acc7e789de66e68a1224ad11fe1e1b817c34

commit 14b4acc7e789de66e68a1224ad11fe1e1b817c34
Author: Pavan Balaji <balaji at mcs.anl.gov>
Date:   Fri Jul 5 20:04:56 2013 -0500

    ch3 should be creating UNIFIED windows.

diff --git a/src/mpid/ch3/src/mpid_rma.c b/src/mpid/ch3/src/mpid_rma.c
index 8a581e7..48c27e8 100644
--- a/src/mpid/ch3/src/mpid_rma.c
+++ b/src/mpid/ch3/src/mpid_rma.c
@@ -80,7 +80,7 @@ int MPID_Win_create(void *base, MPI_Aint size, int disp_unit, MPID_Info *info,
     
     MPIDI_RMA_FUNC_ENTER(MPID_STATE_MPID_WIN_CREATE);
 
-    mpi_errno = win_init(size, disp_unit, MPI_WIN_FLAVOR_CREATE, MPI_WIN_SEPARATE, comm_ptr, win_ptr);
+    mpi_errno = win_init(size, disp_unit, MPI_WIN_FLAVOR_CREATE, MPI_WIN_UNIFIED, comm_ptr, win_ptr);
     if (mpi_errno) MPIU_ERR_POP(mpi_errno);
 
     (*win_ptr)->base = base;
@@ -106,7 +106,7 @@ int MPID_Win_allocate(MPI_Aint size, int disp_unit, MPID_Info *info,
     
     MPIDI_RMA_FUNC_ENTER(MPID_STATE_MPID_WIN_ALLOCATE);
 
-    mpi_errno = win_init(size, disp_unit, MPI_WIN_FLAVOR_ALLOCATE, MPI_WIN_SEPARATE, comm_ptr, win_ptr);
+    mpi_errno = win_init(size, disp_unit, MPI_WIN_FLAVOR_ALLOCATE, MPI_WIN_UNIFIED, comm_ptr, win_ptr);
     if (mpi_errno != MPI_SUCCESS) { MPIU_ERR_POP(mpi_errno); }
 
     mpi_errno = MPIDI_CH3U_Win_fns.allocate(size, disp_unit, info, comm_ptr, baseptr, win_ptr);
@@ -133,7 +133,7 @@ int MPID_Win_create_dynamic(MPID_Info *info, MPID_Comm *comm_ptr,
 
     mpi_errno = win_init(0 /* spec defines size to be 0 */,
                          1 /* spec defines disp_unit to be 1 */,
-                         MPI_WIN_FLAVOR_DYNAMIC, MPI_WIN_SEPARATE,
+                         MPI_WIN_FLAVOR_DYNAMIC, MPI_WIN_UNIFIED,
                          comm_ptr, win_ptr);
 
     if (mpi_errno) MPIU_ERR_POP(mpi_errno);

-----------------------------------------------------------------------

Summary of changes:
 src/mpid/ch3/src/mpid_rma.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
MPICH primary repository


More information about the commits mailing list