2005-05-24 02:06:50 +04:00
|
|
|
/*
|
2005-11-05 22:57:48 +03:00
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2005-05-24 02:06:50 +04: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-24 02:22:20 +04:00
|
|
|
#ifndef MCA_PML_OB1_COMM_H
|
|
|
|
#define MCA_PML_OB1_COMM_H
|
2005-05-24 02:06:50 +04:00
|
|
|
|
2005-07-04 02:45:48 +04:00
|
|
|
#include "opal/threads/mutex.h"
|
|
|
|
#include "opal/threads/condition.h"
|
2005-07-03 20:22:16 +04:00
|
|
|
#include "opal/class/opal_list.h"
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "ompi/proc/proc.h"
|
2005-05-24 02:06:50 +04:00
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
struct mca_pml_ob1_comm_proc_t {
|
2005-08-12 06:41:14 +04:00
|
|
|
opal_object_t super;
|
|
|
|
uint16_t expected_sequence; /**< send message sequence number - receiver side */
|
2006-02-10 21:55:43 +03:00
|
|
|
struct ompi_proc_t* proc_ompi;
|
2005-09-14 21:08:08 +04:00
|
|
|
#if OMPI_HAVE_THREAD_SUPPORT
|
2005-09-12 00:48:37 +04:00
|
|
|
volatile int32_t send_sequence; /**< send side sequence number */
|
2005-09-14 21:08:08 +04:00
|
|
|
#else
|
|
|
|
int32_t send_sequence; /**< send side sequence number */
|
|
|
|
#endif
|
2005-08-12 06:41:14 +04: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-24 02:06:50 +04: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 20:06:07 +04:00
|
|
|
opal_object_t super;
|
2005-09-14 21:08:08 +04:00
|
|
|
#if OMPI_HAVE_THREAD_SUPPORT
|
2005-07-15 22:34:37 +04:00
|
|
|
volatile uint32_t recv_sequence; /**< recv request sequence number - receiver side */
|
2005-09-14 21:08:08 +04:00
|
|
|
#else
|
|
|
|
uint32_t recv_sequence; /**< recv request sequence number - receiver side */
|
|
|
|
#endif
|
2005-07-04 02:45:48 +04:00
|
|
|
opal_mutex_t matching_lock; /**< matching lock */
|
2005-07-03 20:22:16 +04:00
|
|
|
opal_list_t wild_receives; /**< queue of unmatched wild (source process not specified) receives */
|
2005-05-24 02:06:50 +04:00
|
|
|
mca_pml_ob1_comm_proc_t* procs;
|
|
|
|
size_t num_procs;
|
|
|
|
};
|
|
|
|
typedef struct mca_pml_comm_t mca_pml_ob1_comm_t;
|
|
|
|
|
|
|
|
OMPI_DECLSPEC OBJ_CLASS_DECLARATION(mca_pml_ob1_comm_t);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
OMPI_DECLSPEC extern int mca_pml_ob1_comm_init_size(mca_pml_ob1_comm_t* comm, size_t size);
|
|
|
|
|
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|