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.
|
2006-08-24 16:38:08 +00:00
|
|
|
* Copyright (c) 2004-2006 The University of Tennessee and The University
|
2005-11-05 19:57:48 +00:00
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2005-05-23 22:06:50 +00:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $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"
|
2005-05-23 22:06:50 +00:00
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
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;
|
2005-09-14 17:08:08 +00:00
|
|
|
#if OMPI_HAVE_THREAD_SUPPORT
|
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;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Cached on ompi_communicator_t to hold queues/state
|
|
|
|
* used by the PML<->PTL interface for matching logic.
|
|
|
|
*/
|
|
|
|
struct mca_pml_comm_t {
|
2005-07-03 16:06:07 +00:00
|
|
|
opal_object_t super;
|
2005-09-14 17:08:08 +00:00
|
|
|
#if OMPI_HAVE_THREAD_SUPPORT
|
2005-07-15 18:34:37 +00:00
|
|
|
volatile uint32_t recv_sequence; /**< recv request sequence number - receiver side */
|
2005-09-14 17:08:08 +00:00
|
|
|
#else
|
|
|
|
uint32_t recv_sequence; /**< recv request sequence number - receiver side */
|
|
|
|
#endif
|
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 */
|
2005-05-23 22:06:50 +00:00
|
|
|
mca_pml_ob1_comm_proc_t* procs;
|
|
|
|
size_t num_procs;
|
|
|
|
};
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize an instance of mca_pml_ob1_comm_t based on the communicator size.
|
|
|
|
*
|
|
|
|
* @param comm Instance of mca_pml_ob1_comm_t
|
|
|
|
* @param size Size of communicator
|
|
|
|
* @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
|
|
|
|
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|