Blame src/mpi/rma/win_post.c

Packit Service c5cf8c
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil ; -*- */
Packit Service c5cf8c
/*
Packit Service c5cf8c
 *
Packit Service c5cf8c
 *  (C) 2001 by Argonne National Laboratory.
Packit Service c5cf8c
 *      See COPYRIGHT in top-level directory.
Packit Service c5cf8c
 */
Packit Service c5cf8c
Packit Service c5cf8c
#include "mpiimpl.h"
Packit Service c5cf8c
Packit Service c5cf8c
/* -- Begin Profiling Symbol Block for routine MPI_Win_post */
Packit Service c5cf8c
#if defined(HAVE_PRAGMA_WEAK)
Packit Service c5cf8c
#pragma weak MPI_Win_post = PMPI_Win_post
Packit Service c5cf8c
#elif defined(HAVE_PRAGMA_HP_SEC_DEF)
Packit Service c5cf8c
#pragma _HP_SECONDARY_DEF PMPI_Win_post  MPI_Win_post
Packit Service c5cf8c
#elif defined(HAVE_PRAGMA_CRI_DUP)
Packit Service c5cf8c
#pragma _CRI duplicate MPI_Win_post as PMPI_Win_post
Packit Service c5cf8c
#elif defined(HAVE_WEAK_ATTRIBUTE)
Packit Service c5cf8c
int MPI_Win_post(MPI_Group group, int assert, MPI_Win win)
Packit Service c5cf8c
    __attribute__ ((weak, alias("PMPI_Win_post")));
Packit Service c5cf8c
#endif
Packit Service c5cf8c
/* -- End Profiling Symbol Block */
Packit Service c5cf8c
Packit Service c5cf8c
/* Define MPICH_MPI_FROM_PMPI if weak symbols are not supported to build
Packit Service c5cf8c
   the MPI routines */
Packit Service c5cf8c
#ifndef MPICH_MPI_FROM_PMPI
Packit Service c5cf8c
#undef MPI_Win_post
Packit Service c5cf8c
#define MPI_Win_post PMPI_Win_post
Packit Service c5cf8c
Packit Service c5cf8c
#endif
Packit Service c5cf8c
Packit Service c5cf8c
#undef FUNCNAME
Packit Service c5cf8c
#define FUNCNAME MPI_Win_post
Packit Service c5cf8c
#undef FCNAME
Packit Service c5cf8c
#define FCNAME MPL_QUOTE(FUNCNAME)
Packit Service c5cf8c
/*@
Packit Service c5cf8c
   MPI_Win_post - Start an RMA exposure epoch
Packit Service c5cf8c
Packit Service c5cf8c
Input Parameters:
Packit Service c5cf8c
+ group - group of origin processes (handle)
Packit Service c5cf8c
. assert - Used to optimize this call; zero may be used as a default.
Packit Service c5cf8c
  See notes. (integer)
Packit Service c5cf8c
- win - window object (handle)
Packit Service c5cf8c
Packit Service c5cf8c
   Notes:
Packit Service c5cf8c
   The 'assert' argument is used to indicate special conditions for the
Packit Service c5cf8c
   fence that an implementation may use to optimize the 'MPI_Win_post'
Packit Service c5cf8c
   operation.  The value zero is always correct.  Other assertion values
Packit Service c5cf8c
   may be or''ed together.  Assertions that are valid for 'MPI_Win_post' are\:
Packit Service c5cf8c
Packit Service c5cf8c
+ MPI_MODE_NOCHECK - the matching calls to 'MPI_WIN_START' have not yet
Packit Service c5cf8c
  occurred on any origin processes when the call to 'MPI_WIN_POST' is made.
Packit Service c5cf8c
  The nocheck option can be specified by a post call if and only if it is
Packit Service c5cf8c
  specified by each matching start call.
Packit Service c5cf8c
. MPI_MODE_NOSTORE - the local window was not updated by local stores (or
Packit Service c5cf8c
  local get or receive calls) since last synchronization. This may avoid
Packit Service c5cf8c
  the need for cache synchronization at the post call.
Packit Service c5cf8c
- MPI_MODE_NOPUT - the local window will not be updated by put or accumulate
Packit Service c5cf8c
  calls after the post call, until the ensuing (wait) synchronization. This
Packit Service c5cf8c
  may avoid the need for cache synchronization at the wait call.
Packit Service c5cf8c
Packit Service c5cf8c
.N Fortran
Packit Service c5cf8c
Packit Service c5cf8c
.N Errors
Packit Service c5cf8c
.N MPI_SUCCESS
Packit Service c5cf8c
@*/
Packit Service c5cf8c
int MPI_Win_post(MPI_Group group, int assert, MPI_Win win)
Packit Service c5cf8c
{
Packit Service c5cf8c
    int mpi_errno = MPI_SUCCESS;
Packit Service c5cf8c
    MPIR_Win *win_ptr = NULL;
Packit Service c5cf8c
    MPIR_Group *group_ptr = NULL;
Packit Service c5cf8c
    MPIR_FUNC_TERSE_STATE_DECL(MPID_STATE_MPI_WIN_POST);
Packit Service c5cf8c
Packit Service c5cf8c
    MPIR_ERRTEST_INITIALIZED_ORDIE();
Packit Service c5cf8c
Packit Service c5cf8c
    MPID_THREAD_CS_ENTER(GLOBAL, MPIR_THREAD_GLOBAL_ALLFUNC_MUTEX);
Packit Service c5cf8c
    MPIR_FUNC_TERSE_RMA_ENTER(MPID_STATE_MPI_WIN_POST);
Packit Service c5cf8c
Packit Service c5cf8c
    /* Validate parameters, especially handles needing to be converted */
Packit Service c5cf8c
#ifdef HAVE_ERROR_CHECKING
Packit Service c5cf8c
    {
Packit Service c5cf8c
        MPID_BEGIN_ERROR_CHECKS;
Packit Service c5cf8c
        {
Packit Service c5cf8c
            MPIR_ERRTEST_WIN(win, mpi_errno);
Packit Service c5cf8c
            MPIR_ERRTEST_GROUP(group, mpi_errno);
Packit Service c5cf8c
        }
Packit Service c5cf8c
        MPID_END_ERROR_CHECKS;
Packit Service c5cf8c
    }
Packit Service c5cf8c
#endif
Packit Service c5cf8c
Packit Service c5cf8c
    /* Convert MPI object handles to object pointers */
Packit Service c5cf8c
    MPIR_Win_get_ptr(win, win_ptr);
Packit Service c5cf8c
    MPIR_Group_get_ptr(group, group_ptr);
Packit Service c5cf8c
Packit Service c5cf8c
    /* Validate parameters and objects (post conversion) */
Packit Service c5cf8c
#ifdef HAVE_ERROR_CHECKING
Packit Service c5cf8c
    {
Packit Service c5cf8c
        MPID_BEGIN_ERROR_CHECKS;
Packit Service c5cf8c
        {
Packit Service c5cf8c
            /* Validate win_ptr */
Packit Service c5cf8c
            MPIR_Win_valid_ptr(win_ptr, mpi_errno);
Packit Service c5cf8c
Packit Service c5cf8c
            MPIR_Group_valid_ptr(group_ptr, mpi_errno);
Packit Service c5cf8c
Packit Service c5cf8c
            /* TODO: Validate assert argument */
Packit Service c5cf8c
            /* TODO: Validate that window is not in passive mode */
Packit Service c5cf8c
Packit Service c5cf8c
            if (mpi_errno)
Packit Service c5cf8c
                goto fn_fail;
Packit Service c5cf8c
        }
Packit Service c5cf8c
        MPID_END_ERROR_CHECKS;
Packit Service c5cf8c
    }
Packit Service c5cf8c
#endif /* HAVE_ERROR_CHECKING */
Packit Service c5cf8c
Packit Service c5cf8c
    /* ... body of routine ...  */
Packit Service c5cf8c
Packit Service c5cf8c
    mpi_errno = MPID_Win_post(group_ptr, assert, win_ptr);
Packit Service c5cf8c
    if (mpi_errno != MPI_SUCCESS)
Packit Service c5cf8c
        goto fn_fail;
Packit Service c5cf8c
Packit Service c5cf8c
    /* ... end of body of routine ... */
Packit Service c5cf8c
Packit Service c5cf8c
  fn_exit:
Packit Service c5cf8c
    MPIR_FUNC_TERSE_RMA_EXIT(MPID_STATE_MPI_WIN_POST);
Packit Service c5cf8c
    MPID_THREAD_CS_EXIT(GLOBAL, MPIR_THREAD_GLOBAL_ALLFUNC_MUTEX);
Packit Service c5cf8c
    return mpi_errno;
Packit Service c5cf8c
Packit Service c5cf8c
  fn_fail:
Packit Service c5cf8c
    /* --BEGIN ERROR HANDLING-- */
Packit Service c5cf8c
#ifdef HAVE_ERROR_CHECKING
Packit Service c5cf8c
    {
Packit Service c5cf8c
        mpi_errno =
Packit Service c5cf8c
            MPIR_Err_create_code(mpi_errno, MPIR_ERR_RECOVERABLE, FCNAME, __LINE__, MPI_ERR_OTHER,
Packit Service c5cf8c
                                 "**mpi_win_post", "**mpi_win_post %G %A %W", group, assert, win);
Packit Service c5cf8c
    }
Packit Service c5cf8c
#endif
Packit Service c5cf8c
    mpi_errno = MPIR_Err_return_win(win_ptr, FCNAME, mpi_errno);
Packit Service c5cf8c
    goto fn_exit;
Packit Service c5cf8c
    /* --END ERROR HANDLING-- */
Packit Service c5cf8c
}