Blame src/mpi/pt2pt/bufattach.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
#include "bsendutil.h"
Packit Service c5cf8c
Packit Service c5cf8c
/* -- Begin Profiling Symbol Block for routine MPI_Buffer_attach */
Packit Service c5cf8c
#if defined(HAVE_PRAGMA_WEAK)
Packit Service c5cf8c
#pragma weak MPI_Buffer_attach = PMPI_Buffer_attach
Packit Service c5cf8c
#elif defined(HAVE_PRAGMA_HP_SEC_DEF)
Packit Service c5cf8c
#pragma _HP_SECONDARY_DEF PMPI_Buffer_attach  MPI_Buffer_attach
Packit Service c5cf8c
#elif defined(HAVE_PRAGMA_CRI_DUP)
Packit Service c5cf8c
#pragma _CRI duplicate MPI_Buffer_attach as PMPI_Buffer_attach
Packit Service c5cf8c
#elif defined(HAVE_WEAK_ATTRIBUTE)
Packit Service c5cf8c
int MPI_Buffer_attach(void *buffer, int size) __attribute__ ((weak, alias("PMPI_Buffer_attach")));
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_Buffer_attach
Packit Service c5cf8c
#define MPI_Buffer_attach PMPI_Buffer_attach
Packit Service c5cf8c
Packit Service c5cf8c
#endif
Packit Service c5cf8c
Packit Service c5cf8c
#undef FUNCNAME
Packit Service c5cf8c
#define FUNCNAME MPI_Buffer_attach
Packit Service c5cf8c
#undef FCNAME
Packit Service c5cf8c
#define FCNAME MPL_QUOTE(FUNCNAME)
Packit Service c5cf8c
/*@
Packit Service c5cf8c
  MPI_Buffer_attach - Attaches a user-provided buffer for sending
Packit Service c5cf8c
Packit Service c5cf8c
Input Parameters:
Packit Service c5cf8c
+ buffer - initial buffer address (choice)
Packit Service c5cf8c
- size - buffer size, in bytes (integer)
Packit Service c5cf8c
Packit Service c5cf8c
Notes:
Packit Service c5cf8c
The size given should be the sum of the sizes of all outstanding Bsends that
Packit Service c5cf8c
you intend to have, plus 'MPI_BSEND_OVERHEAD' for each Bsend that you do.
Packit Service c5cf8c
For the purposes of calculating size, you should use 'MPI_Pack_size'.
Packit Service c5cf8c
In other words, in the code
Packit Service c5cf8c
.vb
Packit Service c5cf8c
     MPI_Buffer_attach(buffer, size);
Packit Service c5cf8c
     MPI_Bsend(..., count=20, datatype=type1,  ...);
Packit Service c5cf8c
     ...
Packit Service c5cf8c
     MPI_Bsend(..., count=40, datatype=type2, ...);
Packit Service c5cf8c
.ve
Packit Service c5cf8c
the value of 'size' in the 'MPI_Buffer_attach' call should be greater than
Packit Service c5cf8c
the value computed by
Packit Service c5cf8c
.vb
Packit Service c5cf8c
     MPI_Pack_size(20, type1, comm, &s1;;
Packit Service c5cf8c
     MPI_Pack_size(40, type2, comm, &s2;;
Packit Service c5cf8c
     size = s1 + s2 + 2 * MPI_BSEND_OVERHEAD;
Packit Service c5cf8c
.ve
Packit Service c5cf8c
The 'MPI_BSEND_OVERHEAD' gives the maximum amount of space that may be used in
Packit Service c5cf8c
the buffer for use by the BSEND routines in using the buffer.  This value
Packit Service c5cf8c
is in 'mpi.h' (for C) and 'mpif.h' (for Fortran).
Packit Service c5cf8c
Packit Service c5cf8c
.N NotThreadSafe
Packit Service c5cf8c
Because the buffer for buffered sends (e.g., 'MPI_Bsend') is shared by all
Packit Service c5cf8c
threads in a process, the user is responsible for ensuring that only
Packit Service c5cf8c
one thread at a time calls this routine or 'MPI_Buffer_detach'.
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
.N MPI_ERR_BUFFER
Packit Service c5cf8c
.N MPI_ERR_INTERN
Packit Service c5cf8c
Packit Service c5cf8c
.seealso: MPI_Buffer_detach, MPI_Bsend
Packit Service c5cf8c
@*/
Packit Service c5cf8c
int MPI_Buffer_attach(void *buffer, int size)
Packit Service c5cf8c
{
Packit Service c5cf8c
    int mpi_errno = MPI_SUCCESS;
Packit Service c5cf8c
    MPIR_FUNC_TERSE_STATE_DECL(MPID_STATE_MPI_BUFFER_ATTACH);
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_ENTER(MPID_STATE_MPI_BUFFER_ATTACH);
Packit Service c5cf8c
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_ARGNEG(size, "size", 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
    /* ... body of routine ...  */
Packit Service c5cf8c
Packit Service c5cf8c
    mpi_errno = MPIR_Bsend_attach(buffer, size);
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_EXIT(MPID_STATE_MPI_BUFFER_ATTACH);
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_buffer_attach", "**mpi_buffer_attach %p %d", buffer, size);
Packit Service c5cf8c
    }
Packit Service c5cf8c
#endif
Packit Service c5cf8c
    mpi_errno = MPIR_Err_return_comm(0, FCNAME, mpi_errno);
Packit Service c5cf8c
    goto fn_exit;
Packit Service c5cf8c
    /* --END ERROR HANDLING-- */
Packit Service c5cf8c
}