Blame src/mpi/rma/win_create_dynamic.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_create_dynamic */
Packit Service c5cf8c
#if defined(HAVE_PRAGMA_WEAK)
Packit Service c5cf8c
#pragma weak MPI_Win_create_dynamic = PMPI_Win_create_dynamic
Packit Service c5cf8c
#elif defined(HAVE_PRAGMA_HP_SEC_DEF)
Packit Service c5cf8c
#pragma _HP_SECONDARY_DEF PMPI_Win_create_dynamic  MPI_Win_create_dynamic
Packit Service c5cf8c
#elif defined(HAVE_PRAGMA_CRI_DUP)
Packit Service c5cf8c
#pragma _CRI duplicate MPI_Win_create_dynamic as PMPI_Win_create_dynamic
Packit Service c5cf8c
#elif defined(HAVE_WEAK_ATTRIBUTE)
Packit Service c5cf8c
int MPI_Win_create_dynamic(MPI_Info info, MPI_Comm comm, MPI_Win * win)
Packit Service c5cf8c
    __attribute__ ((weak, alias("PMPI_Win_create_dynamic")));
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_create_dynamic
Packit Service c5cf8c
#define MPI_Win_create_dynamic PMPI_Win_create_dynamic
Packit Service c5cf8c
Packit Service c5cf8c
#endif
Packit Service c5cf8c
Packit Service c5cf8c
#undef FUNCNAME
Packit Service c5cf8c
#define FUNCNAME MPI_Win_create_dynamic
Packit Service c5cf8c
#undef FCNAME
Packit Service c5cf8c
#define FCNAME MPL_QUOTE(FUNCNAME)
Packit Service c5cf8c
/*@
Packit Service c5cf8c
MPI_Win_create_dynamic - Create an MPI Window object for one-sided
Packit Service c5cf8c
communication.  This window allows memory to be dynamically exposed and
Packit Service c5cf8c
un-exposed for RMA operations.
Packit Service c5cf8c
Packit Service c5cf8c
Packit Service c5cf8c
This is a collective call executed by all processes in the group of comm. It
Packit Service c5cf8c
returns a window win without memory attached. Existing process memory can be
Packit Service c5cf8c
attached as described below. This routine returns a window object that can be
Packit Service c5cf8c
used by these processes to perform RMA operations on attached memory. Because
Packit Service c5cf8c
this window has special properties, it will sometimes be referred to as a
Packit Service c5cf8c
dynamic window.  The info argument can be used to specify hints similar to the
Packit Service c5cf8c
info argument for 'MPI_Win_create'.
Packit Service c5cf8c
Packit Service c5cf8c
In the case of a window created with 'MPI_Win_create_dynamic', the target_disp
Packit Service c5cf8c
for all RMA functions is the address at the target; i.e., the effective
Packit Service c5cf8c
window_base is 'MPI_BOTTOM' and the disp_unit is one. For dynamic windows, the
Packit Service c5cf8c
target_disp argument to RMA communication operations is not restricted to
Packit Service c5cf8c
non-negative values. Users should use 'MPI_Get_address' at the target process to
Packit Service c5cf8c
determine the address of a target memory location and communicate this address
Packit Service c5cf8c
to the origin process.
Packit Service c5cf8c
Packit Service c5cf8c
Input Parameters:
Packit Service c5cf8c
+ info - info argument (handle)
Packit Service c5cf8c
- comm - communicator (handle)
Packit Service c5cf8c
Packit Service c5cf8c
Output Parameters:
Packit Service c5cf8c
. win - window object returned by the call (handle)
Packit Service c5cf8c
Packit Service c5cf8c
Notes:
Packit Service c5cf8c
Packit Service c5cf8c
Users are cautioned that displacement arithmetic can overflow in variables of
Packit Service c5cf8c
type 'MPI_Aint' and result in unexpected values on some platforms. This issue may
Packit Service c5cf8c
be addressed in a future version of MPI.
Packit Service c5cf8c
Packit Service c5cf8c
Memory in this window may not be used as the target of one-sided accesses in
Packit Service c5cf8c
this window until it is attached using the function 'MPI_Win_attach'. That is, in
Packit Service c5cf8c
addition to using 'MPI_Win_create_dynamic' to create an MPI window, the user must
Packit Service c5cf8c
use 'MPI_Win_attach' before any local memory may be the target of an MPI RMA
Packit Service c5cf8c
operation. Only memory that is currently accessible may be attached.
Packit Service c5cf8c
Packit Service c5cf8c
Packit Service c5cf8c
.N ThreadSafe
Packit Service c5cf8c
.N Fortran
Packit Service c5cf8c
Packit Service c5cf8c
.N Errors
Packit Service c5cf8c
.N MPI_SUCCESS
Packit Service c5cf8c
.N MPI_ERR_ARG
Packit Service c5cf8c
.N MPI_ERR_COMM
Packit Service c5cf8c
.N MPI_ERR_INFO
Packit Service c5cf8c
.N MPI_ERR_OTHER
Packit Service c5cf8c
.N MPI_ERR_SIZE
Packit Service c5cf8c
Packit Service c5cf8c
.seealso: MPI_Win_attach MPI_Win_detach MPI_Win_allocate MPI_Win_allocate_shared MPI_Win_create MPI_Win_free
Packit Service c5cf8c
@*/
Packit Service c5cf8c
int MPI_Win_create_dynamic(MPI_Info info, MPI_Comm comm, 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_Comm *comm_ptr = NULL;
Packit Service c5cf8c
    MPIR_Info *info_ptr = NULL;
Packit Service c5cf8c
    MPIR_FUNC_TERSE_STATE_DECL(MPID_STATE_MPI_WIN_CREATE_DYNAMIC);
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_CREATE_DYNAMIC);
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_COMM(comm, mpi_errno);
Packit Service c5cf8c
            MPIR_ERRTEST_INFO_OR_NULL(info, mpi_errno);
Packit Service c5cf8c
            MPIR_ERRTEST_ARGNULL(win, "win", mpi_errno);
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
    /* Convert MPI object handles to object pointers */
Packit Service c5cf8c
    MPIR_Comm_get_ptr(comm, comm_ptr);
Packit Service c5cf8c
    MPIR_Info_get_ptr(info, info_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 pointers */
Packit Service c5cf8c
            MPIR_Comm_valid_ptr(comm_ptr, mpi_errno, FALSE);
Packit Service c5cf8c
            if (mpi_errno != MPI_SUCCESS)
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_create_dynamic(info_ptr, comm_ptr, &win_ptr);
Packit Service c5cf8c
    if (mpi_errno != MPI_SUCCESS)
Packit Service c5cf8c
        goto fn_fail;
Packit Service c5cf8c
Packit Service c5cf8c
    /* Initialize a few fields that have specific defaults */
Packit Service c5cf8c
    win_ptr->name[0] = 0;
Packit Service c5cf8c
    win_ptr->errhandler = 0;
Packit Service c5cf8c
Packit Service c5cf8c
    /* return the handle of the window object to the user */
Packit Service c5cf8c
    MPIR_OBJ_PUBLISH_HANDLE(*win, win_ptr->handle);
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_CREATE_DYNAMIC);
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_create_dynamic", "**mpi_win_create_dynamic %I %C %p",
Packit Service c5cf8c
                                 info, comm, win);
Packit Service c5cf8c
    }
Packit Service c5cf8c
#endif
Packit Service c5cf8c
    mpi_errno = MPIR_Err_return_comm(comm_ptr, FCNAME, mpi_errno);
Packit Service c5cf8c
    goto fn_exit;
Packit Service c5cf8c
    /* --END ERROR HANDLING-- */
Packit Service c5cf8c
}