Blame src/mpi/coll/ineighbor_alltoallw/ineighbor_alltoallw.c

Packit Service c5cf8c
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil ; -*- */
Packit Service c5cf8c
/*
Packit Service c5cf8c
 *  (C) 2012 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
/*
Packit Service c5cf8c
=== BEGIN_MPI_T_CVAR_INFO_BLOCK ===
Packit Service c5cf8c
Packit Service c5cf8c
cvars:
Packit Service c5cf8c
    - name        : MPIR_CVAR_INEIGHBOR_ALLTOALLW_INTRA_ALGORITHM
Packit Service c5cf8c
      category    : COLLECTIVE
Packit Service c5cf8c
      type        : string
Packit Service c5cf8c
      default     : auto
Packit Service c5cf8c
      class       : device
Packit Service c5cf8c
      verbosity   : MPI_T_VERBOSITY_USER_BASIC
Packit Service c5cf8c
      scope       : MPI_T_SCOPE_ALL_EQ
Packit Service c5cf8c
      description : |-
Packit Service c5cf8c
        Variable to select ineighbor_alltoallw algorithm
Packit Service c5cf8c
        auto   - Internal algorithm selection
Packit Service c5cf8c
        linear - Force linear algorithm
Packit Service c5cf8c
Packit Service c5cf8c
    - name        : MPIR_CVAR_INEIGHBOR_ALLTOALLW_INTER_ALGORITHM
Packit Service c5cf8c
      category    : COLLECTIVE
Packit Service c5cf8c
      type        : string
Packit Service c5cf8c
      default     : auto
Packit Service c5cf8c
      class       : device
Packit Service c5cf8c
      verbosity   : MPI_T_VERBOSITY_USER_BASIC
Packit Service c5cf8c
      scope       : MPI_T_SCOPE_ALL_EQ
Packit Service c5cf8c
      description : |-
Packit Service c5cf8c
        Variable to select ineighbor_alltoallw algorithm
Packit Service c5cf8c
        auto   - Internal algorithm selection
Packit Service c5cf8c
        linear - Force linear algorithm
Packit Service c5cf8c
Packit Service c5cf8c
    - name        : MPIR_CVAR_INEIGHBOR_ALLTOALLW_DEVICE_COLLECTIVE
Packit Service c5cf8c
      category    : COLLECTIVE
Packit Service c5cf8c
      type        : boolean
Packit Service c5cf8c
      default     : true
Packit Service c5cf8c
      class       : device
Packit Service c5cf8c
      verbosity   : MPI_T_VERBOSITY_USER_BASIC
Packit Service c5cf8c
      scope       : MPI_T_SCOPE_ALL_EQ
Packit Service c5cf8c
      description : >-
Packit Service c5cf8c
        If set to true, MPI_ineighbor_alltoallw will allow the device to override the
Packit Service c5cf8c
        MPIR-level collective algorithms. The device still has the
Packit Service c5cf8c
        option to call the MPIR-level algorithms manually.
Packit Service c5cf8c
        If set to false, the device-level ineighbor_alltoallw function will not be
Packit Service c5cf8c
        called.
Packit Service c5cf8c
Packit Service c5cf8c
=== END_MPI_T_CVAR_INFO_BLOCK ===
Packit Service c5cf8c
*/
Packit Service c5cf8c
Packit Service c5cf8c
/* -- Begin Profiling Symbol Block for routine MPI_Ineighbor_alltoallw */
Packit Service c5cf8c
#if defined(HAVE_PRAGMA_WEAK)
Packit Service c5cf8c
#pragma weak MPI_Ineighbor_alltoallw = PMPI_Ineighbor_alltoallw
Packit Service c5cf8c
#elif defined(HAVE_PRAGMA_HP_SEC_DEF)
Packit Service c5cf8c
#pragma _HP_SECONDARY_DEF PMPI_Ineighbor_alltoallw  MPI_Ineighbor_alltoallw
Packit Service c5cf8c
#elif defined(HAVE_PRAGMA_CRI_DUP)
Packit Service c5cf8c
#pragma _CRI duplicate MPI_Ineighbor_alltoallw as PMPI_Ineighbor_alltoallw
Packit Service c5cf8c
#elif defined(HAVE_WEAK_ATTRIBUTE)
Packit Service c5cf8c
int MPI_Ineighbor_alltoallw(const void *sendbuf, const int sendcounts[],
Packit Service c5cf8c
                            const MPI_Aint sdispls[], const MPI_Datatype sendtypes[],
Packit Service c5cf8c
                            void *recvbuf, const int recvcounts[], const MPI_Aint rdispls[],
Packit Service c5cf8c
                            const MPI_Datatype recvtypes[], MPI_Comm comm, MPI_Request * request)
Packit Service c5cf8c
    __attribute__ ((weak, alias("PMPI_Ineighbor_alltoallw")));
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_Ineighbor_alltoallw
Packit Service c5cf8c
#define MPI_Ineighbor_alltoallw PMPI_Ineighbor_alltoallw
Packit Service c5cf8c
Packit Service c5cf8c
#undef FUNCNAME
Packit Service c5cf8c
#define FUNCNAME MPIR_Ineighbor_alltoallw_sched_intra_auto
Packit Service c5cf8c
#undef FCNAME
Packit Service c5cf8c
#define FCNAME MPL_QUOTE(FUNCNAME)
Packit Service c5cf8c
int MPIR_Ineighbor_alltoallw_sched_intra_auto(const void *sendbuf, const int sendcounts[],
Packit Service c5cf8c
                                              const MPI_Aint sdispls[],
Packit Service c5cf8c
                                              const MPI_Datatype sendtypes[], void *recvbuf,
Packit Service c5cf8c
                                              const int recvcounts[], const MPI_Aint rdispls[],
Packit Service c5cf8c
                                              const MPI_Datatype recvtypes[], MPIR_Comm * comm_ptr,
Packit Service c5cf8c
                                              MPIR_Sched_t s)
Packit Service c5cf8c
{
Packit Service c5cf8c
    int mpi_errno = MPI_SUCCESS;
Packit Service c5cf8c
Packit Service c5cf8c
    mpi_errno =
Packit Service c5cf8c
        MPIR_Ineighbor_alltoallw_sched_allcomm_linear(sendbuf, sendcounts, sdispls, sendtypes,
Packit Service c5cf8c
                                                      recvbuf, recvcounts, rdispls, recvtypes,
Packit Service c5cf8c
                                                      comm_ptr, s);
Packit Service c5cf8c
    if (mpi_errno)
Packit Service c5cf8c
        MPIR_ERR_POP(mpi_errno);
Packit Service c5cf8c
Packit Service c5cf8c
  fn_exit:
Packit Service c5cf8c
    return mpi_errno;
Packit Service c5cf8c
Packit Service c5cf8c
  fn_fail:
Packit Service c5cf8c
    goto fn_exit;
Packit Service c5cf8c
}
Packit Service c5cf8c
Packit Service c5cf8c
#undef FUNCNAME
Packit Service c5cf8c
#define FUNCNAME MPIR_Ineighbor_alltoallw_sched_inter_auto
Packit Service c5cf8c
#undef FCNAME
Packit Service c5cf8c
#define FCNAME MPL_QUOTE(FUNCNAME)
Packit Service c5cf8c
int MPIR_Ineighbor_alltoallw_sched_inter_auto(const void *sendbuf, const int sendcounts[],
Packit Service c5cf8c
                                              const MPI_Aint sdispls[],
Packit Service c5cf8c
                                              const MPI_Datatype sendtypes[], void *recvbuf,
Packit Service c5cf8c
                                              const int recvcounts[], const MPI_Aint rdispls[],
Packit Service c5cf8c
                                              const MPI_Datatype recvtypes[], MPIR_Comm * comm_ptr,
Packit Service c5cf8c
                                              MPIR_Sched_t s)
Packit Service c5cf8c
{
Packit Service c5cf8c
    int mpi_errno = MPI_SUCCESS;
Packit Service c5cf8c
Packit Service c5cf8c
    mpi_errno =
Packit Service c5cf8c
        MPIR_Ineighbor_alltoallw_sched_allcomm_linear(sendbuf, sendcounts, sdispls, sendtypes,
Packit Service c5cf8c
                                                      recvbuf, recvcounts, rdispls, recvtypes,
Packit Service c5cf8c
                                                      comm_ptr, s);
Packit Service c5cf8c
    if (mpi_errno)
Packit Service c5cf8c
        MPIR_ERR_POP(mpi_errno);
Packit Service c5cf8c
Packit Service c5cf8c
  fn_exit:
Packit Service c5cf8c
    return mpi_errno;
Packit Service c5cf8c
Packit Service c5cf8c
  fn_fail:
Packit Service c5cf8c
    goto fn_exit;
Packit Service c5cf8c
}
Packit Service c5cf8c
Packit Service c5cf8c
#undef FUNCNAME
Packit Service c5cf8c
#define FUNCNAME MPIR_Ineighbor_alltoallw_sched_impl
Packit Service c5cf8c
#undef FCNAME
Packit Service c5cf8c
#define FCNAME MPL_QUOTE(FUNCNAME)
Packit Service c5cf8c
int MPIR_Ineighbor_alltoallw_sched_impl(const void *sendbuf, const int sendcounts[],
Packit Service c5cf8c
                                        const MPI_Aint sdispls[], const MPI_Datatype sendtypes[],
Packit Service c5cf8c
                                        void *recvbuf, const int recvcounts[],
Packit Service c5cf8c
                                        const MPI_Aint rdispls[], const MPI_Datatype recvtypes[],
Packit Service c5cf8c
                                        MPIR_Comm * comm_ptr, MPIR_Sched_t s)
Packit Service c5cf8c
{
Packit Service c5cf8c
    int mpi_errno = MPI_SUCCESS;
Packit Service c5cf8c
Packit Service c5cf8c
    if (comm_ptr->comm_kind == MPIR_COMM_KIND__INTRACOMM) {
Packit Service c5cf8c
        switch (MPIR_Ineighbor_alltoallw_intra_algo_choice) {
Packit Service c5cf8c
            case MPIR_INEIGHBOR_ALLTOALLW_INTRA_ALGO_LINEAR:
Packit Service c5cf8c
                mpi_errno =
Packit Service c5cf8c
                    MPIR_Ineighbor_alltoallw_sched_allcomm_linear(sendbuf, sendcounts, sdispls,
Packit Service c5cf8c
                                                                  sendtypes, recvbuf, recvcounts,
Packit Service c5cf8c
                                                                  rdispls, recvtypes, comm_ptr, s);
Packit Service c5cf8c
                break;
Packit Service c5cf8c
            case MPIR_INEIGHBOR_ALLTOALLW_INTRA_ALGO_AUTO:
Packit Service c5cf8c
                MPL_FALLTHROUGH;
Packit Service c5cf8c
            default:
Packit Service c5cf8c
                mpi_errno =
Packit Service c5cf8c
                    MPIR_Ineighbor_alltoallw_sched_intra_auto(sendbuf, sendcounts, sdispls,
Packit Service c5cf8c
                                                              sendtypes, recvbuf, recvcounts,
Packit Service c5cf8c
                                                              rdispls, recvtypes, comm_ptr, s);
Packit Service c5cf8c
                break;
Packit Service c5cf8c
        }
Packit Service c5cf8c
    } else {
Packit Service c5cf8c
        switch (MPIR_Ineighbor_alltoallw_inter_algo_choice) {
Packit Service c5cf8c
            case MPIR_INEIGHBOR_ALLTOALLW_INTER_ALGO_LINEAR:
Packit Service c5cf8c
                mpi_errno =
Packit Service c5cf8c
                    MPIR_Ineighbor_alltoallw_sched_allcomm_linear(sendbuf, sendcounts, sdispls,
Packit Service c5cf8c
                                                                  sendtypes, recvbuf, recvcounts,
Packit Service c5cf8c
                                                                  rdispls, recvtypes, comm_ptr, s);
Packit Service c5cf8c
                break;
Packit Service c5cf8c
            case MPIR_INEIGHBOR_ALLTOALLW_INTER_ALGO_AUTO:
Packit Service c5cf8c
                MPL_FALLTHROUGH;
Packit Service c5cf8c
            default:
Packit Service c5cf8c
                mpi_errno =
Packit Service c5cf8c
                    MPIR_Ineighbor_alltoallw_sched_inter_auto(sendbuf, sendcounts, sdispls,
Packit Service c5cf8c
                                                              sendtypes, recvbuf, recvcounts,
Packit Service c5cf8c
                                                              rdispls, recvtypes, comm_ptr, s);
Packit Service c5cf8c
                break;
Packit Service c5cf8c
        }
Packit Service c5cf8c
    }
Packit Service c5cf8c
Packit Service c5cf8c
    return mpi_errno;
Packit Service c5cf8c
}
Packit Service c5cf8c
Packit Service c5cf8c
#undef FUNCNAME
Packit Service c5cf8c
#define FUNCNAME MPIR_Ineighbor_alltoallw_sched
Packit Service c5cf8c
#undef FCNAME
Packit Service c5cf8c
#define FCNAME MPL_QUOTE(FUNCNAME)
Packit Service c5cf8c
int MPIR_Ineighbor_alltoallw_sched(const void *sendbuf, const int sendcounts[],
Packit Service c5cf8c
                                   const MPI_Aint sdispls[], const MPI_Datatype sendtypes[],
Packit Service c5cf8c
                                   void *recvbuf, const int recvcounts[],
Packit Service c5cf8c
                                   const MPI_Aint rdispls[], const MPI_Datatype recvtypes[],
Packit Service c5cf8c
                                   MPIR_Comm * comm_ptr, MPIR_Sched_t s)
Packit Service c5cf8c
{
Packit Service c5cf8c
    int mpi_errno = MPI_SUCCESS;
Packit Service c5cf8c
Packit Service c5cf8c
    if (MPIR_CVAR_BARRIER_DEVICE_COLLECTIVE && MPIR_CVAR_DEVICE_COLLECTIVES) {
Packit Service c5cf8c
        mpi_errno = MPID_Ineighbor_alltoallw_sched(sendbuf, sendcounts, sdispls, sendtypes, recvbuf,
Packit Service c5cf8c
                                                   recvcounts, rdispls, recvtypes, comm_ptr, s);
Packit Service c5cf8c
    } else {
Packit Service c5cf8c
        mpi_errno = MPIR_Ineighbor_alltoallw_sched_impl(sendbuf, sendcounts, sdispls, sendtypes,
Packit Service c5cf8c
                                                        recvbuf, recvcounts, rdispls, recvtypes,
Packit Service c5cf8c
                                                        comm_ptr, s);
Packit Service c5cf8c
    }
Packit Service c5cf8c
Packit Service c5cf8c
    return mpi_errno;
Packit Service c5cf8c
}
Packit Service c5cf8c
Packit Service c5cf8c
#undef FUNCNAME
Packit Service c5cf8c
#define FUNCNAME MPIR_Ineighbor_alltoallw_impl
Packit Service c5cf8c
#undef FCNAME
Packit Service c5cf8c
#define FCNAME MPL_QUOTE(FUNCNAME)
Packit Service c5cf8c
int MPIR_Ineighbor_alltoallw_impl(const void *sendbuf, const int sendcounts[],
Packit Service c5cf8c
                                  const MPI_Aint sdispls[],
Packit Service c5cf8c
                                  const MPI_Datatype sendtypes[],
Packit Service c5cf8c
                                  void *recvbuf, const int recvcounts[],
Packit Service c5cf8c
                                  const MPI_Aint rdispls[],
Packit Service c5cf8c
                                  const MPI_Datatype recvtypes[],
Packit Service c5cf8c
                                  MPIR_Comm * comm_ptr, MPIR_Request ** request)
Packit Service c5cf8c
{
Packit Service c5cf8c
    int mpi_errno = MPI_SUCCESS;
Packit Service c5cf8c
    int tag = -1;
Packit Service c5cf8c
    MPIR_Sched_t s = MPIR_SCHED_NULL;
Packit Service c5cf8c
Packit Service c5cf8c
    *request = NULL;
Packit Service c5cf8c
Packit Service c5cf8c
    mpi_errno = MPIR_Sched_next_tag(comm_ptr, &tag;;
Packit Service c5cf8c
    if (mpi_errno)
Packit Service c5cf8c
        MPIR_ERR_POP(mpi_errno);
Packit Service c5cf8c
    mpi_errno = MPIR_Sched_create(&s);
Packit Service c5cf8c
    if (mpi_errno)
Packit Service c5cf8c
        MPIR_ERR_POP(mpi_errno);
Packit Service c5cf8c
    mpi_errno = MPIR_Ineighbor_alltoallw_sched(sendbuf, sendcounts, sdispls, sendtypes,
Packit Service c5cf8c
                                               recvbuf, recvcounts, rdispls, recvtypes,
Packit Service c5cf8c
                                               comm_ptr, s);
Packit Service c5cf8c
    if (mpi_errno)
Packit Service c5cf8c
        MPIR_ERR_POP(mpi_errno);
Packit Service c5cf8c
Packit Service c5cf8c
    mpi_errno = MPIR_Sched_start(&s, comm_ptr, tag, request);
Packit Service c5cf8c
    if (mpi_errno)
Packit Service c5cf8c
        MPIR_ERR_POP(mpi_errno);
Packit Service c5cf8c
Packit Service c5cf8c
  fn_exit:
Packit Service c5cf8c
    return mpi_errno;
Packit Service c5cf8c
  fn_fail:
Packit Service c5cf8c
    goto fn_exit;
Packit Service c5cf8c
}
Packit Service c5cf8c
Packit Service c5cf8c
#undef FUNCNAME
Packit Service c5cf8c
#define FUNCNAME MPIR_Ineighbor_alltoallw
Packit Service c5cf8c
#undef FCNAME
Packit Service c5cf8c
#define FCNAME MPL_QUOTE(FUNCNAME)
Packit Service c5cf8c
int MPIR_Ineighbor_alltoallw(const void *sendbuf, const int sendcounts[],
Packit Service c5cf8c
                             const MPI_Aint sdispls[],
Packit Service c5cf8c
                             const MPI_Datatype sendtypes[], void *recvbuf,
Packit Service c5cf8c
                             const int recvcounts[], const MPI_Aint rdispls[],
Packit Service c5cf8c
                             const MPI_Datatype recvtypes[],
Packit Service c5cf8c
                             MPIR_Comm * comm_ptr, MPIR_Request ** request)
Packit Service c5cf8c
{
Packit Service c5cf8c
    int mpi_errno = MPI_SUCCESS;
Packit Service c5cf8c
Packit Service c5cf8c
    if (MPIR_CVAR_BARRIER_DEVICE_COLLECTIVE && MPIR_CVAR_DEVICE_COLLECTIVES) {
Packit Service c5cf8c
        mpi_errno = MPID_Ineighbor_alltoallw(sendbuf, sendcounts, sdispls, sendtypes, recvbuf,
Packit Service c5cf8c
                                             recvcounts, rdispls, recvtypes, comm_ptr, request);
Packit Service c5cf8c
    } else {
Packit Service c5cf8c
        mpi_errno = MPIR_Ineighbor_alltoallw_impl(sendbuf, sendcounts, sdispls, sendtypes, recvbuf,
Packit Service c5cf8c
                                                  recvcounts, rdispls, recvtypes, comm_ptr,
Packit Service c5cf8c
                                                  request);
Packit Service c5cf8c
    }
Packit Service c5cf8c
Packit Service c5cf8c
    return mpi_errno;
Packit Service c5cf8c
}
Packit Service c5cf8c
Packit Service c5cf8c
#endif /* MPICH_MPI_FROM_PMPI */
Packit Service c5cf8c
Packit Service c5cf8c
#undef FUNCNAME
Packit Service c5cf8c
#define FUNCNAME MPI_Ineighbor_alltoallw
Packit Service c5cf8c
#undef FCNAME
Packit Service c5cf8c
#define FCNAME MPL_QUOTE(FUNCNAME)
Packit Service c5cf8c
/*@
Packit Service c5cf8c
MPI_Ineighbor_alltoallw - Nonblocking version of MPI_Neighbor_alltoallw.
Packit Service c5cf8c
Packit Service c5cf8c
Input Parameters:
Packit Service c5cf8c
+ sendbuf - starting address of the send buffer (choice)
Packit Service c5cf8c
. sendcounts - non-negative integer array (of length outdegree) specifying the number of elements to send to each neighbor
Packit Service c5cf8c
. sdispls - integer array (of length outdegree).  Entry j specifies the displacement in bytes (relative to sendbuf) from which to take the outgoing data destined for neighbor j (array of integers)
Packit Service c5cf8c
. sendtypes - array of datatypes (of length outdegree).  Entry j specifies the type of data to send to neighbor j (array of handles)
Packit Service c5cf8c
. recvcounts - non-negative integer array (of length indegree) specifying the number of elements that are received from each neighbor
Packit Service c5cf8c
. rdispls - integer array (of length indegree).  Entry i specifies the displacement in bytes (relative to recvbuf) at which to place the incoming data from neighbor i (array of integers).
Packit Service c5cf8c
. recvtypes - array of datatypes (of length indegree).  Entry i specifies the type of data received from neighbor i (array of handles).
Packit Service c5cf8c
- comm - communicator with topology structure (handle)
Packit Service c5cf8c
Packit Service c5cf8c
Output Parameters:
Packit Service c5cf8c
+ recvbuf - starting address of the receive buffer (choice)
Packit Service c5cf8c
- request - communication request (handle)
Packit Service c5cf8c
Packit Service c5cf8c
.N ThreadSafe
Packit Service c5cf8c
Packit Service c5cf8c
.N Fortran
Packit Service c5cf8c
Packit Service c5cf8c
.N Errors
Packit Service c5cf8c
@*/
Packit Service c5cf8c
int MPI_Ineighbor_alltoallw(const void *sendbuf, const int sendcounts[], const MPI_Aint sdispls[],
Packit Service c5cf8c
                            const MPI_Datatype sendtypes[], void *recvbuf, const int recvcounts[],
Packit Service c5cf8c
                            const MPI_Aint rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm,
Packit Service c5cf8c
                            MPI_Request * request)
Packit Service c5cf8c
{
Packit Service c5cf8c
    int mpi_errno = MPI_SUCCESS;
Packit Service c5cf8c
    MPIR_Comm *comm_ptr = NULL;
Packit Service c5cf8c
    MPIR_Request *request_ptr = NULL;
Packit Service c5cf8c
    MPIR_FUNC_TERSE_STATE_DECL(MPID_STATE_MPI_INEIGHBOR_ALLTOALLW);
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_INEIGHBOR_ALLTOALLW);
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
Packit Service c5cf8c
            /* TODO more checks may be appropriate */
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_Assert(comm_ptr != NULL);
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
            MPIR_Comm_valid_ptr(comm_ptr, mpi_errno, FALSE);
Packit Service c5cf8c
            MPIR_ERRTEST_ARGNULL(request, "request", mpi_errno);
Packit Service c5cf8c
            /* TODO more checks may be appropriate (counts, in_place, buffer aliasing, etc) */
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 =
Packit Service c5cf8c
        MPIR_Ineighbor_alltoallw(sendbuf, sendcounts, sdispls, sendtypes, recvbuf, recvcounts,
Packit Service c5cf8c
                                 rdispls, recvtypes, comm_ptr, &request_ptr);
Packit Service c5cf8c
    if (mpi_errno)
Packit Service c5cf8c
        MPIR_ERR_POP(mpi_errno);
Packit Service c5cf8c
Packit Service c5cf8c
    /* create a complete request, if needed */
Packit Service c5cf8c
    if (!request_ptr)
Packit Service c5cf8c
        request_ptr = MPIR_Request_create_complete(MPIR_REQUEST_KIND__COLL);
Packit Service c5cf8c
    /* return the handle of the request to the user */
Packit Service c5cf8c
    *request = request_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_EXIT(MPID_STATE_MPI_INEIGHBOR_ALLTOALLW);
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_ineighbor_alltoallw",
Packit Service c5cf8c
                                 "**mpi_ineighbor_alltoallw %p %p %p %p %p %p %p %p %C %p", sendbuf,
Packit Service c5cf8c
                                 sendcounts, sdispls, sendtypes, recvbuf, recvcounts, rdispls,
Packit Service c5cf8c
                                 recvtypes, comm, request);
Packit Service c5cf8c
    }
Packit Service c5cf8c
#endif
Packit Service c5cf8c
    mpi_errno = MPIR_Err_return_comm(NULL, FCNAME, mpi_errno);
Packit Service c5cf8c
    goto fn_exit;
Packit Service c5cf8c
    /* --END ERROR HANDLING-- */
Packit Service c5cf8c
}