2015-10-21 16:13:41 -06:00
|
|
|
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
|
2005-05-23 22:06:50 +00:00
|
|
|
/*
|
2005-11-05 19:57:48 +00:00
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
2016-05-13 11:34:59 -04:00
|
|
|
* Copyright (c) 2004-2016 The University of Tennessee and The University
|
2005-11-05 19:57:48 +00:00
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2015-06-23 20:59:57 -07:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
2005-05-23 22:06:50 +00:00
|
|
|
* University of Stuttgart. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2015-10-21 16:13:41 -06:00
|
|
|
* Copyright (c) 2015 Los Alamos National Security, LLC. All rights
|
|
|
|
* reserved.
|
2005-05-23 22:06:50 +00:00
|
|
|
* $COPYRIGHT$
|
2015-06-23 20:59:57 -07:00
|
|
|
*
|
2005-05-23 22:06:50 +00:00
|
|
|
* Additional copyrights may follow
|
2015-06-23 20:59:57 -07:00
|
|
|
*
|
2005-05-23 22:06:50 +00:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
*/
|
2005-05-23 22:22:20 +00:00
|
|
|
#ifndef MCA_PML_OB1_COMM_H
|
|
|
|
#define MCA_PML_OB1_COMM_H
|
2005-05-23 22:06:50 +00:00
|
|
|
|
2005-07-03 22:45:48 +00:00
|
|
|
#include "opal/threads/mutex.h"
|
2005-07-03 16:22:16 +00:00
|
|
|
#include "opal/class/opal_list.h"
|
2006-02-12 01:33:29 +00:00
|
|
|
#include "ompi/proc/proc.h"
|
2015-08-31 14:58:43 -06:00
|
|
|
#include "ompi/communicator/communicator.h"
|
2009-08-20 11:42:18 +00:00
|
|
|
BEGIN_C_DECLS
|
2005-05-23 22:06:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
struct mca_pml_ob1_comm_proc_t {
|
2005-08-12 02:41:14 +00:00
|
|
|
opal_object_t super;
|
|
|
|
uint16_t expected_sequence; /**< send message sequence number - receiver side */
|
2006-09-20 22:14:46 +00:00
|
|
|
struct ompi_proc_t* ompi_proc;
|
2011-03-18 21:36:35 +00:00
|
|
|
#if OPAL_ENABLE_MULTI_THREADS
|
2005-09-11 20:48:37 +00:00
|
|
|
volatile int32_t send_sequence; /**< send side sequence number */
|
2005-09-14 17:08:08 +00:00
|
|
|
#else
|
|
|
|
int32_t send_sequence; /**< send side sequence number */
|
|
|
|
#endif
|
2005-08-12 02:41:14 +00:00
|
|
|
opal_list_t frags_cant_match; /**< out-of-order fragment queues */
|
|
|
|
opal_list_t specific_receives; /**< queues of unmatched specific receives */
|
|
|
|
opal_list_t unexpected_frags; /**< unexpected fragment queues */
|
2005-05-23 22:06:50 +00:00
|
|
|
};
|
|
|
|
typedef struct mca_pml_ob1_comm_proc_t mca_pml_ob1_comm_proc_t;
|
|
|
|
|
2015-08-31 14:58:43 -06:00
|
|
|
OBJ_CLASS_DECLARATION(mca_pml_ob1_comm_proc_t);
|
2005-05-23 22:06:50 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Cached on ompi_communicator_t to hold queues/state
|
2015-06-23 20:59:57 -07:00
|
|
|
* used by the PML<->PTL interface for matching logic.
|
2005-05-23 22:06:50 +00:00
|
|
|
*/
|
|
|
|
struct mca_pml_comm_t {
|
2005-07-03 16:06:07 +00:00
|
|
|
opal_object_t super;
|
2005-07-15 18:34:37 +00:00
|
|
|
volatile uint32_t recv_sequence; /**< recv request sequence number - receiver side */
|
2005-07-03 22:45:48 +00:00
|
|
|
opal_mutex_t matching_lock; /**< matching lock */
|
2005-07-03 16:22:16 +00:00
|
|
|
opal_list_t wild_receives; /**< queue of unmatched wild (source process not specified) receives */
|
2015-10-21 16:13:41 -06:00
|
|
|
opal_mutex_t proc_lock;
|
2015-08-31 14:58:43 -06:00
|
|
|
mca_pml_ob1_comm_proc_t **procs;
|
2005-05-23 22:06:50 +00:00
|
|
|
size_t num_procs;
|
2011-10-11 20:24:54 +00:00
|
|
|
size_t last_probed;
|
2005-05-23 22:06:50 +00:00
|
|
|
};
|
|
|
|
typedef struct mca_pml_comm_t mca_pml_ob1_comm_t;
|
|
|
|
|
2006-08-24 16:38:08 +00:00
|
|
|
OBJ_CLASS_DECLARATION(mca_pml_ob1_comm_t);
|
2005-05-23 22:06:50 +00:00
|
|
|
|
2015-08-31 14:58:43 -06:00
|
|
|
static inline mca_pml_ob1_comm_proc_t *mca_pml_ob1_peer_lookup (struct ompi_communicator_t *comm, int rank)
|
|
|
|
{
|
|
|
|
mca_pml_ob1_comm_t *pml_comm = (mca_pml_ob1_comm_t *)comm->c_pml_comm;
|
|
|
|
|
|
|
|
if (OPAL_UNLIKELY(NULL == pml_comm->procs[rank])) {
|
2015-10-21 16:13:41 -06:00
|
|
|
OPAL_THREAD_LOCK(&pml_comm->proc_lock);
|
|
|
|
if (NULL == pml_comm->procs[rank]) {
|
2016-05-05 09:03:20 -04:00
|
|
|
mca_pml_ob1_comm_proc_t* proc = OBJ_NEW(mca_pml_ob1_comm_proc_t);
|
|
|
|
proc->ompi_proc = ompi_comm_peer_lookup (comm, rank);
|
|
|
|
OBJ_RETAIN(proc->ompi_proc);
|
2015-10-21 16:13:41 -06:00
|
|
|
opal_atomic_wmb ();
|
2016-05-05 09:03:20 -04:00
|
|
|
pml_comm->procs[rank] = proc;
|
2015-10-21 16:13:41 -06:00
|
|
|
}
|
|
|
|
OPAL_THREAD_UNLOCK(&pml_comm->proc_lock);
|
2015-08-31 14:58:43 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
return pml_comm->procs[rank];
|
|
|
|
}
|
2005-05-23 22:06:50 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize an instance of mca_pml_ob1_comm_t based on the communicator size.
|
|
|
|
*
|
|
|
|
* @param comm Instance of mca_pml_ob1_comm_t
|
2015-06-23 20:59:57 -07:00
|
|
|
* @param size Size of communicator
|
2005-05-23 22:06:50 +00:00
|
|
|
* @return OMPI_SUCCESS or error status on failure.
|
|
|
|
*/
|
|
|
|
|
2007-04-18 15:52:11 +00:00
|
|
|
extern int mca_pml_ob1_comm_init_size(mca_pml_ob1_comm_t* comm, size_t size);
|
2005-05-23 22:06:50 +00:00
|
|
|
|
2009-08-20 11:42:18 +00:00
|
|
|
END_C_DECLS
|
2005-05-23 22:06:50 +00:00
|
|
|
#endif
|
|
|
|
|