Blame src/mpi/coll/igather/igather.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_IGATHER_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 igather algorithm
Packit Service c5cf8c
        auto     - Internal algorithm selection
Packit Service c5cf8c
        binomial - Force binomial algorithm
Packit Service c5cf8c
        tree     - Force genetric transport based tree algorithm
Packit Service c5cf8c
Packit Service c5cf8c
    - name        : MPIR_CVAR_IGATHER_TREE_KVAL
Packit Service c5cf8c
      category    : COLLECTIVE
Packit Service c5cf8c
      type        : int
Packit Service c5cf8c
      default     : 2
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
        k value for tree based igather
Packit Service c5cf8c
Packit Service c5cf8c
    - name        : MPIR_CVAR_IGATHER_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 igather algorithm
Packit Service c5cf8c
        auto        - Internal algorithm selection
Packit Service c5cf8c
        long_inter  - Force long inter algorithm
Packit Service c5cf8c
        short_inter - Force short inter algorithm
Packit Service c5cf8c
Packit Service c5cf8c
    - name        : MPIR_CVAR_IGATHER_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_Igather 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 igather 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_Igather */
Packit Service c5cf8c
#if defined(HAVE_PRAGMA_WEAK)
Packit Service c5cf8c
#pragma weak MPI_Igather = PMPI_Igather
Packit Service c5cf8c
#elif defined(HAVE_PRAGMA_HP_SEC_DEF)
Packit Service c5cf8c
#pragma _HP_SECONDARY_DEF PMPI_Igather  MPI_Igather
Packit Service c5cf8c
#elif defined(HAVE_PRAGMA_CRI_DUP)
Packit Service c5cf8c
#pragma _CRI duplicate MPI_Igather as PMPI_Igather
Packit Service c5cf8c
#elif defined(HAVE_WEAK_ATTRIBUTE)
Packit Service c5cf8c
int MPI_Igather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf,
Packit Service c5cf8c
                int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm,
Packit Service c5cf8c
                MPI_Request * request)
Packit Service c5cf8c
    __attribute__ ((weak, alias("PMPI_Igather")));
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_Igather
Packit Service c5cf8c
#define MPI_Igather PMPI_Igather
Packit Service c5cf8c
Packit Service c5cf8c
#undef FUNCNAME
Packit Service c5cf8c
#define FUNCNAME MPIR_Igather_sched_intra_auto
Packit Service c5cf8c
#undef FCNAME
Packit Service c5cf8c
#define FCNAME MPL_QUOTE(FUNCNAME)
Packit Service c5cf8c
int MPIR_Igather_sched_intra_auto(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
Packit Service c5cf8c
                                  void *recvbuf, int recvcount, MPI_Datatype recvtype, int root,
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
    mpi_errno =
Packit Service c5cf8c
        MPIR_Igather_sched_intra_binomial(sendbuf, sendcount, sendtype, recvbuf, recvcount,
Packit Service c5cf8c
                                          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
  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_Igather_sched_inter_auto
Packit Service c5cf8c
#undef FCNAME
Packit Service c5cf8c
#define FCNAME MPL_QUOTE(FUNCNAME)
Packit Service c5cf8c
int MPIR_Igather_sched_inter_auto(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
Packit Service c5cf8c
                                  void *recvbuf, int recvcount, MPI_Datatype recvtype, int root,
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
    MPI_Aint local_size, remote_size;
Packit Service c5cf8c
    MPI_Aint recvtype_size, sendtype_size, nbytes;
Packit Service c5cf8c
Packit Service c5cf8c
    if (root == MPI_PROC_NULL) {
Packit Service c5cf8c
        /* local processes other than root do nothing */
Packit Service c5cf8c
        goto fn_exit;
Packit Service c5cf8c
    }
Packit Service c5cf8c
Packit Service c5cf8c
    remote_size = comm_ptr->remote_size;
Packit Service c5cf8c
    local_size = comm_ptr->local_size;
Packit Service c5cf8c
Packit Service c5cf8c
    if (root == MPI_ROOT) {
Packit Service c5cf8c
        MPIR_Datatype_get_size_macro(recvtype, recvtype_size);
Packit Service c5cf8c
        nbytes = recvtype_size * recvcount * remote_size;
Packit Service c5cf8c
    } else {
Packit Service c5cf8c
        /* remote side */
Packit Service c5cf8c
        MPIR_Datatype_get_size_macro(sendtype, sendtype_size);
Packit Service c5cf8c
        nbytes = sendtype_size * sendcount * local_size;
Packit Service c5cf8c
    }
Packit Service c5cf8c
Packit Service c5cf8c
    if (nbytes < MPIR_CVAR_GATHER_INTER_SHORT_MSG_SIZE) {
Packit Service c5cf8c
        mpi_errno =
Packit Service c5cf8c
            MPIR_Igather_sched_inter_short(sendbuf, sendcount, sendtype, recvbuf, recvcount,
Packit Service c5cf8c
                                           recvtype, root, comm_ptr, s);
Packit Service c5cf8c
    } else {
Packit Service c5cf8c
        mpi_errno =
Packit Service c5cf8c
            MPIR_Igather_sched_inter_long(sendbuf, sendcount, sendtype, recvbuf, recvcount,
Packit Service c5cf8c
                                          recvtype, root, comm_ptr, s);
Packit Service c5cf8c
    }
Packit Service c5cf8c
Packit Service c5cf8c
  fn_exit:
Packit Service c5cf8c
    return mpi_errno;
Packit Service c5cf8c
}
Packit Service c5cf8c
Packit Service c5cf8c
#undef FUNCNAME
Packit Service c5cf8c
#define FUNCNAME MPIR_Igather_sched_impl
Packit Service c5cf8c
#undef FCNAME
Packit Service c5cf8c
#define FCNAME MPL_QUOTE(FUNCNAME)
Packit Service c5cf8c
int MPIR_Igather_sched_impl(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
Packit Service c5cf8c
                            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 (comm_ptr->comm_kind == MPIR_COMM_KIND__INTRACOMM) {
Packit Service c5cf8c
        /* intracommunicator */
Packit Service c5cf8c
        switch (MPIR_Igather_intra_algo_choice) {
Packit Service c5cf8c
            case MPIR_IGATHER_INTRA_ALGO_BINOMIAL:
Packit Service c5cf8c
                mpi_errno = MPIR_Igather_sched_intra_binomial(sendbuf, sendcount, sendtype,
Packit Service c5cf8c
                                                              recvbuf, recvcount, recvtype, root,
Packit Service c5cf8c
                                                              comm_ptr, s);
Packit Service c5cf8c
                break;
Packit Service c5cf8c
            case MPIR_IGATHER_INTRA_ALGO_AUTO:
Packit Service c5cf8c
                MPL_FALLTHROUGH;
Packit Service c5cf8c
            default:
Packit Service c5cf8c
                mpi_errno = MPIR_Igather_sched_intra_auto(sendbuf, sendcount, sendtype,
Packit Service c5cf8c
                                                          recvbuf, recvcount, recvtype, root,
Packit Service c5cf8c
                                                          comm_ptr, s);
Packit Service c5cf8c
                break;
Packit Service c5cf8c
        }
Packit Service c5cf8c
    } else {
Packit Service c5cf8c
        /* intercommunicator */
Packit Service c5cf8c
        switch (MPIR_Igather_inter_algo_choice) {
Packit Service c5cf8c
            case MPIR_IGATHER_INTER_ALGO_LONG:
Packit Service c5cf8c
                mpi_errno = MPIR_Igather_sched_inter_long(sendbuf, sendcount, sendtype,
Packit Service c5cf8c
                                                          recvbuf, recvcount, recvtype, root,
Packit Service c5cf8c
                                                          comm_ptr, s);
Packit Service c5cf8c
                break;
Packit Service c5cf8c
            case MPIR_IGATHER_INTER_ALGO_SHORT:
Packit Service c5cf8c
                mpi_errno = MPIR_Igather_sched_inter_short(sendbuf, sendcount, sendtype,
Packit Service c5cf8c
                                                           recvbuf, recvcount, recvtype, root,
Packit Service c5cf8c
                                                           comm_ptr, s);
Packit Service c5cf8c
                break;
Packit Service c5cf8c
            case MPIR_IGATHER_INTER_ALGO_AUTO:
Packit Service c5cf8c
                MPL_FALLTHROUGH;
Packit Service c5cf8c
            default:
Packit Service c5cf8c
                mpi_errno = MPIR_Igather_sched_inter_auto(sendbuf, sendcount, sendtype, recvbuf,
Packit Service c5cf8c
                                                          recvcount, recvtype, root, comm_ptr, s);
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_Igather_sched
Packit Service c5cf8c
#undef FCNAME
Packit Service c5cf8c
#define FCNAME MPL_QUOTE(FUNCNAME)
Packit Service c5cf8c
int MPIR_Igather_sched(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
Packit Service c5cf8c
                       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_IGATHER_DEVICE_COLLECTIVE && MPIR_CVAR_DEVICE_COLLECTIVES) {
Packit Service c5cf8c
        mpi_errno = MPID_Igather_sched(sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype,
Packit Service c5cf8c
                                       root, comm_ptr, s);
Packit Service c5cf8c
    } else {
Packit Service c5cf8c
        mpi_errno = MPIR_Igather_sched_impl(sendbuf, sendcount, sendtype, recvbuf, recvcount,
Packit Service c5cf8c
                                            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_Igather_impl
Packit Service c5cf8c
#undef FCNAME
Packit Service c5cf8c
#define FCNAME MPL_QUOTE(FUNCNAME)
Packit Service c5cf8c
int MPIR_Igather_impl(const void *sendbuf, int sendcount,
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
    /* If the user picks one of the transport-enabled algorithms, branch there
Packit Service c5cf8c
     * before going down to the MPIR_Sched-based algorithms. */
Packit Service c5cf8c
    /* TODO - Eventually the intention is to replace all of the
Packit Service c5cf8c
     * MPIR_Sched-based algorithms with transport-enabled algorithms, but that
Packit Service c5cf8c
     * will require sufficient performance testing and replacement algorithms. */
Packit Service c5cf8c
    if (comm_ptr->comm_kind == MPIR_COMM_KIND__INTRACOMM) {
Packit Service c5cf8c
        /* intracommunicator */
Packit Service c5cf8c
        switch (MPIR_Igather_intra_algo_choice) {
Packit Service c5cf8c
            case MPIR_IGATHER_INTRA_ALGO_TREE:
Packit Service c5cf8c
                mpi_errno =
Packit Service c5cf8c
                    MPIR_Igather_intra_tree(sendbuf, sendcount, sendtype,
Packit Service c5cf8c
                                            recvbuf, recvcount, recvtype, root, comm_ptr, request);
Packit Service c5cf8c
                if (mpi_errno)
Packit Service c5cf8c
                    MPIR_ERR_POP(mpi_errno);
Packit Service c5cf8c
                goto fn_exit;
Packit Service c5cf8c
                break;
Packit Service c5cf8c
            default:
Packit Service c5cf8c
                /* go down to the MPIR_Sched-based algorithms */
Packit Service c5cf8c
                break;
Packit Service c5cf8c
        }
Packit Service c5cf8c
    }
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_Igather_sched(sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, root,
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_Igather
Packit Service c5cf8c
#undef FCNAME
Packit Service c5cf8c
#define FCNAME MPL_QUOTE(FUNCNAME)
Packit Service c5cf8c
int MPIR_Igather(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
Packit Service c5cf8c
                 void *recvbuf, int recvcount, MPI_Datatype recvtype, int root,
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_IGATHER_DEVICE_COLLECTIVE && MPIR_CVAR_DEVICE_COLLECTIVES) {
Packit Service c5cf8c
        mpi_errno = MPID_Igather(sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype,
Packit Service c5cf8c
                                 root, comm_ptr, request);
Packit Service c5cf8c
    } else {
Packit Service c5cf8c
        mpi_errno = MPIR_Igather_impl(sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype,
Packit Service c5cf8c
                                      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_Igather
Packit Service c5cf8c
#undef FCNAME
Packit Service c5cf8c
#define FCNAME MPL_QUOTE(FUNCNAME)
Packit Service c5cf8c
/*@
Packit Service c5cf8c
MPI_Igather - Gathers together values from a group of processes in
Packit Service c5cf8c
              a nonblocking way
Packit Service c5cf8c
Packit Service c5cf8c
Input Parameters:
Packit Service c5cf8c
+ sendbuf - starting address of the send buffer (choice)
Packit Service c5cf8c
. sendcount - number of elements in send buffer (non-negative integer)
Packit Service c5cf8c
. sendtype - data type of send buffer elements (handle)
Packit Service c5cf8c
. recvcount - number of elements for any single receive (non-negative integer, significant only at root)
Packit Service c5cf8c
. recvtype - data type of receive buffer elements (significant only at root) (handle)
Packit Service c5cf8c
. root - rank of receiving 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 (significant only at root) (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_Igather(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
Packit Service c5cf8c
                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_IGATHER);
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_IGATHER);
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
        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 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
Packit Service c5cf8c
                if (sendbuf != MPI_IN_PLACE) {
Packit Service c5cf8c
                    MPIR_ERRTEST_COUNT(sendcount, mpi_errno);
Packit Service c5cf8c
                    MPIR_ERRTEST_DATATYPE(sendtype, "sendtype", mpi_errno);
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
                    MPIR_ERRTEST_USERBUFFER(sendbuf, sendcount, sendtype, mpi_errno);
Packit Service c5cf8c
                }
Packit Service c5cf8c
Packit Service c5cf8c
                rank = comm_ptr->rank;
Packit Service c5cf8c
                if (rank == root) {
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
                    /* catch common aliasing cases */
Packit Service c5cf8c
                    if (recvbuf != MPI_IN_PLACE && sendtype == recvtype && sendcount == recvcount &&
Packit Service c5cf8c
                        sendcount != 0) {
Packit Service c5cf8c
                        MPI_Aint recvtype_size;
Packit Service c5cf8c
                        MPIR_Datatype_get_size_macro(recvtype, recvtype_size);
Packit Service c5cf8c
                        MPIR_ERRTEST_ALIAS_COLL(sendbuf,
Packit Service c5cf8c
                                                (char *) recvbuf +
Packit Service c5cf8c
                                                comm_ptr->rank * recvcount * recvtype_size,
Packit Service c5cf8c
                                                mpi_errno);
Packit Service c5cf8c
                    }
Packit Service c5cf8c
                } else
Packit Service c5cf8c
                    MPIR_ERRTEST_SENDBUF_INPLACE(sendbuf, sendcount, mpi_errno);
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
Packit Service c5cf8c
                if (root == MPI_ROOT) {
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
                else if (root != MPI_PROC_NULL) {
Packit Service c5cf8c
                    MPIR_ERRTEST_COUNT(sendcount, mpi_errno);
Packit Service c5cf8c
                    MPIR_ERRTEST_DATATYPE(sendtype, "sendtype", mpi_errno);
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
                    MPIR_ERRTEST_SENDBUF_INPLACE(sendbuf, sendcount, mpi_errno);
Packit Service c5cf8c
                    MPIR_ERRTEST_USERBUFFER(sendbuf, sendcount, sendtype, 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_Igather(sendbuf, sendcount, 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_IGATHER);
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_igather", "**mpi_igather %p %d %D %p %d %D %d %C %p",
Packit Service c5cf8c
                                 sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, root,
Packit Service c5cf8c
                                 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
}