2007-07-25 22:28:04 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2004-2007 The Trustees of the University of Tennessee.
|
|
|
|
* All rights reserved.
|
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
2007-07-20 21:36:11 +00:00
|
|
|
#ifndef __INCLUDE_VPROTOCOL_PESSIMIST_H__
|
|
|
|
#define __INCLUDE_VPROTOCOL_PESSIMIST_H__
|
|
|
|
|
|
|
|
#include "ompi_config.h"
|
2007-08-16 05:52:30 +00:00
|
|
|
#include "../vprotocol.h"
|
2007-07-20 21:36:11 +00:00
|
|
|
#include "ompi/communicator/communicator.h"
|
- Split the datatype engine into two parts: an MPI specific part in
OMPI
and a language agnostic part in OPAL. The convertor is completely
moved into OPAL. This offers several benefits as described in RFC
http://www.open-mpi.org/community/lists/devel/2009/07/6387.php
namely:
- Fewer basic types (int* and float* types, boolean and wchar
- Fixing naming scheme to ompi-nomenclature.
- Usability outside of the ompi-layer.
- Due to the fixed nature of simple opal types, their information is
completely
known at compile time and therefore constified
- With fewer datatypes (22), the actual sizes of bit-field types may be
reduced
from 64 to 32 bits, allowing reorganizing the opal_datatype
structure, eliminating holes and keeping data required in convertor
(upon send/recv) in one cacheline...
This has implications to the convertor-datastructure and other parts
of the code.
- Several performance tests have been run, the netpipe latency does not
change with
this patch on Linux/x86-64 on the smoky cluster.
- Extensive tests have been done to verify correctness (no new
regressions) using:
1. mpi_test_suite on linux/x86-64 using clean ompi-trunk and
ompi-ddt:
a. running both trunk and ompi-ddt resulted in no differences
(except for MPI_SHORT_INT and MPI_TYPE_MIX_LB_UB do now run
correctly).
b. with --enable-memchecker and running under valgrind (one buglet
when run with static found in test-suite, commited)
2. ibm testsuite on linux/x86-64 using clean ompi-trunk and ompi-ddt:
all passed (except for the dynamic/ tests failed!! as trunk/MTT)
3. compilation and usage of HDF5 tests on Jaguar using PGI and
PathScale compilers.
4. compilation and usage on Scicortex.
- Please note, that for the heterogeneous case, (-m32 compiled
binaries/ompi), neither
ompi-trunk, nor ompi-ddt branch would successfully launch.
This commit was SVN r21641.
2009-07-13 04:56:31 +00:00
|
|
|
#include "ompi/datatype/ompi_datatype.h"
|
2008-03-27 21:05:44 +00:00
|
|
|
|
2007-07-20 21:36:11 +00:00
|
|
|
#include "vprotocol_pessimist_event.h"
|
2008-03-27 21:05:44 +00:00
|
|
|
#include "vprotocol_pessimist_sender_based_types.h"
|
2007-07-20 21:36:11 +00:00
|
|
|
|
2007-12-12 19:13:23 +00:00
|
|
|
BEGIN_C_DECLS
|
|
|
|
|
2007-07-20 21:36:11 +00:00
|
|
|
typedef struct mca_vprotocol_pessimist_module_t {
|
2008-03-27 21:05:44 +00:00
|
|
|
mca_vprotocol_base_module_t super;
|
2007-07-20 21:36:11 +00:00
|
|
|
|
2008-03-27 21:05:44 +00:00
|
|
|
/* Event clock */
|
|
|
|
vprotocol_pessimist_clock_t clock;
|
2007-07-20 21:36:11 +00:00
|
|
|
|
2008-03-27 21:05:44 +00:00
|
|
|
/* list of events to send to Event Logger */
|
|
|
|
opal_list_t pending_events;
|
2007-07-20 21:36:11 +00:00
|
|
|
|
2008-03-27 21:05:44 +00:00
|
|
|
/* output buffer for messages to event logger */
|
2008-10-01 18:42:43 +00:00
|
|
|
ompi_communicator_t *el_comm;
|
2008-03-27 21:05:44 +00:00
|
|
|
vprotocol_pessimist_mem_event_t *event_buffer;
|
|
|
|
size_t event_buffer_length;
|
|
|
|
size_t event_buffer_max_length;
|
2009-03-17 17:35:28 +00:00
|
|
|
|
|
|
|
/* space for allocating events */
|
2008-03-27 21:05:44 +00:00
|
|
|
ompi_free_list_t events_pool;
|
2007-07-20 21:36:11 +00:00
|
|
|
|
2008-03-27 21:05:44 +00:00
|
|
|
/* Sender Based repository */
|
|
|
|
vprotocol_pessimist_sender_based_t sender_based;
|
2007-07-20 21:36:11 +00:00
|
|
|
|
2008-03-27 21:05:44 +00:00
|
|
|
/* replay mode variables */
|
|
|
|
bool replay;
|
|
|
|
opal_list_t replay_events;
|
2007-07-20 21:36:11 +00:00
|
|
|
} mca_vprotocol_pessimist_module_t;
|
|
|
|
|
2007-12-12 19:13:23 +00:00
|
|
|
OMPI_DECLSPEC extern mca_vprotocol_pessimist_module_t mca_vprotocol_pessimist;
|
2008-10-01 18:42:43 +00:00
|
|
|
OMPI_DECLSPEC extern mca_vprotocol_base_component_t mca_vprotocol_pessimist_component;
|
2007-07-20 21:36:11 +00:00
|
|
|
|
2007-09-20 21:57:21 +00:00
|
|
|
int mca_vprotocol_pessimist_enable(bool enable);
|
2007-07-20 21:36:11 +00:00
|
|
|
int mca_vprotocol_pessimist_dump(struct ompi_communicator_t* comm, int verbose);
|
|
|
|
|
|
|
|
int mca_vprotocol_pessimist_add_procs(struct ompi_proc_t **procs, size_t nprocs);
|
|
|
|
int mca_vprotocol_pessimist_del_procs(struct ompi_proc_t **procs, size_t nprocs);
|
|
|
|
int mca_vprotocol_pessimist_progress(void);
|
|
|
|
int mca_vprotocol_pessimist_add_comm(struct ompi_communicator_t* comm);
|
|
|
|
int mca_vprotocol_pessimist_del_comm(struct ompi_communicator_t* comm);
|
|
|
|
|
|
|
|
int mca_vprotocol_pessimist_irecv(void *addr,
|
|
|
|
size_t count,
|
|
|
|
ompi_datatype_t * datatype,
|
|
|
|
int src,
|
|
|
|
int tag,
|
|
|
|
struct ompi_communicator_t *comm,
|
|
|
|
struct ompi_request_t **request );
|
|
|
|
int mca_vprotocol_pessimist_recv(void *addr,
|
|
|
|
size_t count,
|
|
|
|
ompi_datatype_t * datatype,
|
|
|
|
int src,
|
|
|
|
int tag,
|
|
|
|
struct ompi_communicator_t *comm,
|
|
|
|
ompi_status_public_t * status );
|
|
|
|
|
|
|
|
int mca_vprotocol_pessimist_isend(void *buf,
|
|
|
|
size_t count,
|
|
|
|
ompi_datatype_t* datatype,
|
|
|
|
int dst,
|
|
|
|
int tag,
|
|
|
|
mca_pml_base_send_mode_t sendmode,
|
|
|
|
ompi_communicator_t* comm,
|
|
|
|
ompi_request_t** request );
|
|
|
|
int mca_vprotocol_pessimist_send(void *buf,
|
|
|
|
size_t count,
|
|
|
|
ompi_datatype_t* datatype,
|
|
|
|
int dst,
|
|
|
|
int tag,
|
|
|
|
mca_pml_base_send_mode_t sendmode,
|
|
|
|
ompi_communicator_t* comm );
|
|
|
|
|
|
|
|
int mca_vprotocol_pessimist_iprobe(int src, int tag,
|
|
|
|
struct ompi_communicator_t *comm,
|
|
|
|
int *matched, ompi_status_public_t * status );
|
|
|
|
int mca_vprotocol_pessimist_probe(int src, int tag,
|
|
|
|
struct ompi_communicator_t *comm,
|
|
|
|
ompi_status_public_t * status );
|
|
|
|
|
2007-12-12 19:13:23 +00:00
|
|
|
END_C_DECLS
|
|
|
|
|
2007-12-07 08:17:30 +00:00
|
|
|
#include "vprotocol_pessimist_wait.h"
|
2007-07-20 21:36:11 +00:00
|
|
|
#include "vprotocol_pessimist_start.h"
|
2008-03-27 21:05:44 +00:00
|
|
|
|
|
|
|
#include "vprotocol_pessimist_request.h"
|
|
|
|
#include "vprotocol_pessimist_sender_based.h"
|
2007-07-20 21:36:11 +00:00
|
|
|
#include "vprotocol_pessimist_eventlog.h"
|
|
|
|
|
|
|
|
#endif /* __INCLUDE_VPROTOCOL_PESSIMIST_H__ */
|