Blame src/mpi/coll/iscatterv/iscatterv.c

Packit Service c5cf8c
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil ; -*- */
Packit Service c5cf8c
/*
Packit Service c5cf8c
 *  (C) 2010 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_ISCATTERV_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 iscatterv algorithm
Packit Service c5cf8c
        auto   - Internal algorithm selection
Packit Service c5cf8c
        linear - Force linear algorithm
Packit Service c5cf8c
Packit Service c5cf8c
    - name        : MPIR_CVAR_ISCATTERV_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 iscatterv algorithm
Packit Service c5cf8c
        auto   - Internal algorithm selection
Packit Service c5cf8c
        linear - Force linear algorithm
Packit Service c5cf8c
Packit Service c5cf8c
    - name        : MPIR_CVAR_ISCATTERV_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_Iscatterv 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 iscatterv 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_Iscatterv */
Packit Service c5cf8c
#if defined(HAVE_PRAGMA_WEAK)
Packit Service c5cf8c
#pragma weak MPI_Iscatterv = PMPI_Iscatterv
Packit Service c5cf8c
#elif defined(HAVE_PRAGMA_HP_SEC_DEF)
Packit Service c5cf8c
#pragma _HP_SECONDARY_DEF PMPI_Iscatterv  MPI_Iscatterv
Packit Service c5cf8c
#elif defined(HAVE_PRAGMA_CRI_DUP)
Packit Service c5cf8c
#pragma _CRI duplicate MPI_Iscatterv as PMPI_Iscatterv
Packit Service c5cf8c
#elif defined(HAVE_WEAK_ATTRIBUTE)
Packit Service c5cf8c
int MPI_Iscatterv(const void *sendbuf, const int sendcounts[], const int displs[],
Packit Service c5cf8c
                  MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype,
Packit Service c5cf8c
                  int root, MPI_Comm comm, MPI_Request * request)
Packit Service c5cf8c
    __attribute__ ((weak, alias("PMPI_Iscatterv")));
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_Iscatterv
Packit Service c5cf8c
#define MPI_Iscatterv PMPI_Iscatterv
Packit Service c5cf8c
Packit Service c5cf8c
/* any non-MPI functions go here, especially non-static ones */
Packit Service c5cf8c
Packit Service c5cf8c
#undef FUNCNAME
Packit Service c5cf8c
#define FUNCNAME MPIR_Iscatterv_sched_intra_auto
Packit Service c5cf8c
#undef FCNAME
Packit Service c5cf8c
#define FCNAME MPL_QUOTE(FUNCNAME)
Packit Service c5cf8c
int MPIR_Iscatterv_sched_intra_auto(const void *sendbuf, const int sendcounts[], const int displs[],
Packit Service c5cf8c
                                    MPI_Datatype sendtype, void *recvbuf, int recvcount,
Packit Service c5cf8c
                                    MPI_Datatype recvtype, int root, 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_Iscatterv_sched_allcomm_linear(sendbuf, sendcounts, displs, sendtype, recvbuf,
Packit Service c5cf8c
                                            recvcount, recvtype, root, 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_Iscatterv_sched_inter_auto
Packit Service c5cf8c
#undef FCNAME
Packit Service c5cf8c
#define FCNAME MPL_QUOTE(FUNCNAME)
Packit Service c5cf8c
int MPIR_Iscatterv_sched_inter_auto(const void *sendbuf, const int sendcounts[], const int displs[],
Packit Service c5cf8c
                                    MPI_Datatype sendtype, void *recvbuf, int recvcount,
Packit Service c5cf8c
                                    MPI_Datatype recvtype, int root, 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_Iscatterv_sched_allcomm_linear(sendbuf, sendcounts, displs, sendtype, recvbuf,
Packit Service c5cf8c
                                            recvcount, recvtype, root, 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_Iscatterv_sched_impl
Packit Service c5cf8c
#undef FCNAME
Packit Service c5cf8c
#define FCNAME MPL_QUOTE(FUNCNAME)
Packit Service c5cf8c
int MPIR_Iscatterv_sched_impl(const void *sendbuf, const int sendcounts[], const int displs[],
Packit Service c5cf8c
                              MPI_Datatype sendtype, void *recvbuf, int recvcount,
Packit Service c5cf8c
                              MPI_Datatype recvtype, int root, 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_Iscatterv_intra_algo_choice) {
Packit Service c5cf8c
            case MPIR_ISCATTERV_INTRA_ALGO_LINEAR:
Packit Service c5cf8c
                mpi_errno =
Packit Service c5cf8c
                    MPIR_Iscatterv_sched_allcomm_linear(sendbuf, sendcounts, displs, sendtype,
Packit Service c5cf8c
                                                        recvbuf, recvcount, recvtype, root,
Packit Service c5cf8c
                                                        comm_ptr, s);
Packit Service c5cf8c
                break;
Packit Service c5cf8c
            case MPIR_ISCATTERV_INTRA_ALGO_AUTO:
Packit Service c5cf8c
                MPL_FALLTHROUGH;
Packit Service c5cf8c
            default:
Packit Service c5cf8c
                mpi_errno =
Packit Service c5cf8c
                    MPIR_Iscatterv_sched_intra_auto(sendbuf, sendcounts, displs, sendtype, recvbuf,
Packit Service c5cf8c
                                                    recvcount, recvtype, root, comm_ptr, s);
Packit Service c5cf8c
                break;
Packit Service c5cf8c
        }
Packit Service c5cf8c
    } else {
Packit Service c5cf8c
        switch (MPIR_Iscatterv_inter_algo_choice) {
Packit Service c5cf8c
            case MPIR_ISCATTERV_INTER_ALGO_LINEAR:
Packit Service c5cf8c
                mpi_errno =
Packit Service c5cf8c
                    MPIR_Iscatterv_sched_allcomm_linear(sendbuf, sendcounts, displs, sendtype,
Packit Service c5cf8c
                                                        recvbuf, recvcount, recvtype, root,
Packit Service c5cf8c
                                                        comm_ptr, s);
Packit Service c5cf8c
                break;
Packit Service c5cf8c
            case MPIR_ISCATTERV_INTER_ALGO_AUTO:
Packit Service c5cf8c
                MPL_FALLTHROUGH;
Packit Service c5cf8c
            default:
Packit Service c5cf8c
                mpi_errno =
Packit Service c5cf8c
                    MPIR_Iscatterv_sched_inter_auto(sendbuf, sendcounts, displs, sendtype, recvbuf,
Packit Service c5cf8c
                                                    recvcount, recvtype, root, comm_ptr, s);
Packit Service c5cf8c
                break;
Packit Service c5cf8c
        }
Packit Service c5cf8c
    }
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_Iscatterv_sched
Packit Service c5cf8c
#undef FCNAME
Packit Service c5cf8c
#define FCNAME MPL_QUOTE(FUNCNAME)
Packit Service c5cf8c
int MPIR_Iscatterv_sched(const void *sendbuf, const int sendcounts[], const int displs[],
Packit Service c5cf8c
                         MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype,
Packit Service c5cf8c
                         int root, 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_Iscatterv_sched(sendbuf, sendcounts, displs, sendtype, recvbuf, recvcount,
Packit Service c5cf8c
                                         recvtype, root, comm_ptr, s);
Packit Service c5cf8c
    } else {
Packit Service c5cf8c
        mpi_errno = MPIR_Iscatterv_sched_impl(sendbuf, sendcounts, displs, sendtype, recvbuf,
Packit Service c5cf8c
                                              recvcount, recvtype, root, 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_Iscatterv_impl
Packit Service c5cf8c
#undef FCNAME
Packit Service c5cf8c
#define FCNAME MPL_QUOTE(FUNCNAME)
Packit Service c5cf8c
int MPIR_Iscatterv_impl(const void *sendbuf, const int sendcounts[], const int displs[],
Packit Service c5cf8c
                        MPI_Datatype sendtype, void *recvbuf, int recvcount,
Packit Service c5cf8c
                        MPI_Datatype recvtype, int root, MPIR_Comm * comm_ptr,
Packit Service c5cf8c
                        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
Packit Service c5cf8c
    mpi_errno =
Packit Service c5cf8c
        MPIR_Iscatterv_sched(sendbuf, sendcounts, displs, sendtype, recvbuf, recvcount, recvtype,
Packit Service c5cf8c
                             root, 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_Iscatterv
Packit Service c5cf8c
#undef FCNAME
Packit Service c5cf8c
#define FCNAME MPL_QUOTE(FUNCNAME)
Packit Service c5cf8c
int MPIR_Iscatterv(const void *sendbuf, const int sendcounts[], const int displs[],
Packit Service c5cf8c
                   MPI_Datatype sendtype, void *recvbuf, int recvcount,
Packit Service c5cf8c
                   MPI_Datatype recvtype, int root, 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_Iscatterv(sendbuf, sendcounts, displs, sendtype, recvbuf, recvcount,
Packit Service c5cf8c
                                   recvtype, root, comm_ptr, request);
Packit Service c5cf8c
    } else {
Packit Service c5cf8c
        mpi_errno = MPIR_Iscatterv_impl(sendbuf, sendcounts, displs, sendtype, recvbuf, recvcount,
Packit Service c5cf8c
                                        recvtype, root, comm_ptr, 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_Iscatterv
Packit Service c5cf8c
#undef FCNAME
Packit Service c5cf8c
#define FCNAME MPL_QUOTE(FUNCNAME)
Packit Service c5cf8c
/*@
Packit Service c5cf8c
MPI_Iscatterv - Scatters a buffer in parts to all processes in a communicator
Packit Service c5cf8c
                in a nonblocking way
Packit Service c5cf8c
Packit Service c5cf8c
Input Parameters:
Packit Service c5cf8c
+ sendbuf - address of send buffer (significant only at root) (choice)
Packit Service c5cf8c
. sendcounts - non-negative integer array (of length group size) specifying the number of elements to send to each processor (significant only at root)
Packit Service c5cf8c
. displs - integer array (of length group size). Entry i specifies the displacement (relative to sendbuf) from which to take the outgoing data to process i (significant only at root)
Packit Service c5cf8c
. sendtype - data type of send buffer elements (significant only at root) (handle)
Packit Service c5cf8c
. recvcount - number of elements in receive buffer (non-negative integer)
Packit Service c5cf8c
. recvtype - data type of receive buffer elements (handle)
Packit Service c5cf8c
. root - rank of sending process (integer)
Packit Service c5cf8c
- comm - communicator (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_Iscatterv(const void *sendbuf, const int sendcounts[], const int displs[],
Packit Service c5cf8c
                  MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype,
Packit Service c5cf8c
                  int root, MPI_Comm comm, 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_ISCATTERV);
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_ISCATTERV);
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_DATATYPE(sendtype, "sendtype", mpi_errno);
Packit Service c5cf8c
            if (recvbuf != MPI_IN_PLACE)
Packit Service c5cf8c
                MPIR_ERRTEST_DATATYPE(recvtype, "recvtype", mpi_errno);
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
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_Datatype *sendtype_ptr = NULL, *recvtype_ptr = NULL;
Packit Service c5cf8c
            int i, comm_size, rank;
Packit Service c5cf8c
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
            if (comm_ptr->comm_kind == MPIR_COMM_KIND__INTRACOMM) {
Packit Service c5cf8c
                MPIR_ERRTEST_INTRA_ROOT(comm_ptr, root, mpi_errno);
Packit Service c5cf8c
                rank = comm_ptr->rank;
Packit Service c5cf8c
                comm_size = comm_ptr->local_size;
Packit Service c5cf8c
Packit Service c5cf8c
                if (rank == root) {
Packit Service c5cf8c
                    for (i = 0; i < comm_size; i++) {
Packit Service c5cf8c
                        MPIR_ERRTEST_COUNT(sendcounts[i], mpi_errno);
Packit Service c5cf8c
                        MPIR_ERRTEST_DATATYPE(sendtype, "sendtype", mpi_errno);
Packit Service c5cf8c
                    }
Packit Service c5cf8c
                    if (HANDLE_GET_KIND(sendtype) != HANDLE_KIND_BUILTIN) {
Packit Service c5cf8c
                        MPIR_Datatype_get_ptr(sendtype, sendtype_ptr);
Packit Service c5cf8c
                        MPIR_Datatype_valid_ptr(sendtype_ptr, mpi_errno);
Packit Service c5cf8c
                        if (mpi_errno != MPI_SUCCESS)
Packit Service c5cf8c
                            goto fn_fail;
Packit Service c5cf8c
                        MPIR_Datatype_committed_ptr(sendtype_ptr, mpi_errno);
Packit Service c5cf8c
                        if (mpi_errno != MPI_SUCCESS)
Packit Service c5cf8c
                            goto fn_fail;
Packit Service c5cf8c
                    }
Packit Service c5cf8c
                    for (i = 0; i < comm_size; i++) {
Packit Service c5cf8c
                        if (sendcounts[i] > 0) {
Packit Service c5cf8c
                            MPIR_ERRTEST_USERBUFFER(sendbuf, sendcounts[i], sendtype, mpi_errno);
Packit Service c5cf8c
                            break;
Packit Service c5cf8c
                        }
Packit Service c5cf8c
                    }
Packit Service c5cf8c
                    for (i = 0; i < comm_size; i++) {
Packit Service c5cf8c
                        if (sendcounts[i] > 0) {
Packit Service c5cf8c
                            MPIR_ERRTEST_SENDBUF_INPLACE(sendbuf, sendcounts[i], mpi_errno);
Packit Service c5cf8c
                            break;
Packit Service c5cf8c
                        }
Packit Service c5cf8c
                    }
Packit Service c5cf8c
                    /* catch common aliasing cases */
Packit Service c5cf8c
                    if (recvbuf != MPI_IN_PLACE && sendtype == recvtype &&
Packit Service c5cf8c
                        sendcounts[comm_ptr->rank] != 0 && recvcount != 0) {
Packit Service c5cf8c
                        int sendtype_size;
Packit Service c5cf8c
                        MPIR_Datatype_get_size_macro(sendtype, sendtype_size);
Packit Service c5cf8c
                        MPIR_ERRTEST_ALIAS_COLL(recvbuf,
Packit Service c5cf8c
                                                (char *) sendbuf +
Packit Service c5cf8c
                                                displs[comm_ptr->rank] * sendtype_size, mpi_errno);
Packit Service c5cf8c
                    }
Packit Service c5cf8c
Packit Service c5cf8c
                } else
Packit Service c5cf8c
                    MPIR_ERRTEST_RECVBUF_INPLACE(recvbuf, recvcount, mpi_errno);
Packit Service c5cf8c
Packit Service c5cf8c
                if (recvbuf != MPI_IN_PLACE) {
Packit Service c5cf8c
                    MPIR_ERRTEST_COUNT(recvcount, mpi_errno);
Packit Service c5cf8c
                    MPIR_ERRTEST_DATATYPE(recvtype, "recvtype", mpi_errno);
Packit Service c5cf8c
                    if (HANDLE_GET_KIND(recvtype) != HANDLE_KIND_BUILTIN) {
Packit Service c5cf8c
                        MPIR_Datatype_get_ptr(recvtype, recvtype_ptr);
Packit Service c5cf8c
                        MPIR_Datatype_valid_ptr(recvtype_ptr, mpi_errno);
Packit Service c5cf8c
                        if (mpi_errno != MPI_SUCCESS)
Packit Service c5cf8c
                            goto fn_fail;
Packit Service c5cf8c
                        MPIR_Datatype_committed_ptr(recvtype_ptr, mpi_errno);
Packit Service c5cf8c
                        if (mpi_errno != MPI_SUCCESS)
Packit Service c5cf8c
                            goto fn_fail;
Packit Service c5cf8c
                    }
Packit Service c5cf8c
                    MPIR_ERRTEST_USERBUFFER(recvbuf, recvcount, recvtype, mpi_errno);
Packit Service c5cf8c
                }
Packit Service c5cf8c
            }
Packit Service c5cf8c
Packit Service c5cf8c
            if (comm_ptr->comm_kind == MPIR_COMM_KIND__INTERCOMM) {
Packit Service c5cf8c
                MPIR_ERRTEST_INTER_ROOT(comm_ptr, root, mpi_errno);
Packit Service c5cf8c
                if (root == MPI_ROOT) {
Packit Service c5cf8c
                    comm_size = comm_ptr->remote_size;
Packit Service c5cf8c
                    for (i = 0; i < comm_size; i++) {
Packit Service c5cf8c
                        MPIR_ERRTEST_COUNT(sendcounts[i], mpi_errno);
Packit Service c5cf8c
                        MPIR_ERRTEST_DATATYPE(sendtype, "sendtype", mpi_errno);
Packit Service c5cf8c
                    }
Packit Service c5cf8c
                    if (HANDLE_GET_KIND(sendtype) != HANDLE_KIND_BUILTIN) {
Packit Service c5cf8c
                        MPIR_Datatype_get_ptr(sendtype, sendtype_ptr);
Packit Service c5cf8c
                        MPIR_Datatype_valid_ptr(sendtype_ptr, mpi_errno);
Packit Service c5cf8c
                        if (mpi_errno != MPI_SUCCESS)
Packit Service c5cf8c
                            goto fn_fail;
Packit Service c5cf8c
                        MPIR_Datatype_committed_ptr(sendtype_ptr, mpi_errno);
Packit Service c5cf8c
                        if (mpi_errno != MPI_SUCCESS)
Packit Service c5cf8c
                            goto fn_fail;
Packit Service c5cf8c
                    }
Packit Service c5cf8c
                    for (i = 0; i < comm_size; i++) {
Packit Service c5cf8c
                        if (sendcounts[i] > 0) {
Packit Service c5cf8c
                            MPIR_ERRTEST_SENDBUF_INPLACE(sendbuf, sendcounts[i], mpi_errno);
Packit Service c5cf8c
                            MPIR_ERRTEST_USERBUFFER(sendbuf, sendcounts[i], sendtype, mpi_errno);
Packit Service c5cf8c
                            break;
Packit Service c5cf8c
                        }
Packit Service c5cf8c
                    }
Packit Service c5cf8c
                } else if (root != MPI_PROC_NULL) {
Packit Service c5cf8c
                    MPIR_ERRTEST_COUNT(recvcount, mpi_errno);
Packit Service c5cf8c
                    MPIR_ERRTEST_DATATYPE(recvtype, "recvtype", mpi_errno);
Packit Service c5cf8c
                    if (HANDLE_GET_KIND(recvtype) != HANDLE_KIND_BUILTIN) {
Packit Service c5cf8c
                        MPIR_Datatype_get_ptr(recvtype, recvtype_ptr);
Packit Service c5cf8c
                        MPIR_Datatype_valid_ptr(recvtype_ptr, mpi_errno);
Packit Service c5cf8c
                        if (mpi_errno != MPI_SUCCESS)
Packit Service c5cf8c
                            goto fn_fail;
Packit Service c5cf8c
                        MPIR_Datatype_committed_ptr(recvtype_ptr, mpi_errno);
Packit Service c5cf8c
                        if (mpi_errno != MPI_SUCCESS)
Packit Service c5cf8c
                            goto fn_fail;
Packit Service c5cf8c
                    }
Packit Service c5cf8c
                    MPIR_ERRTEST_RECVBUF_INPLACE(recvbuf, recvcount, mpi_errno);
Packit Service c5cf8c
                    MPIR_ERRTEST_USERBUFFER(recvbuf, recvcount, recvtype, mpi_errno);
Packit Service c5cf8c
                }
Packit Service c5cf8c
            }
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_Iscatterv(sendbuf, sendcounts, displs, sendtype, recvbuf, recvcount, recvtype,
Packit Service c5cf8c
                               root, 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_ISCATTERV);
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_iscatterv", "**mpi_iscatterv %p %p %p %D %p %d %D %d %C %p",
Packit Service c5cf8c
                                 sendbuf, sendcounts, displs, sendtype, recvbuf, recvcount,
Packit Service c5cf8c
                                 recvtype, root, comm, request);
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
}