dadca7da88
This merge adds Checkpoint/Restart support to Open MPI. The initial frameworks and components support a LAM/MPI-like implementation. This commit follows the risk assessment presented to the Open MPI core development group on Feb. 22, 2007. This commit closes trac:158 More details to follow. This commit was SVN r14051. The following SVN revisions from the original message are invalid or inconsistent and therefore were not cross-referenced: r13912 The following Trac tickets were found above: Ticket 158 --> https://svn.open-mpi.org/trac/ompi/ticket/158
105 строки
5.0 KiB
C
105 строки
5.0 KiB
C
/*
|
|
* Copyright (c) 2004-2007 The Trustees of Indiana University and Indiana
|
|
* University Research and Technology
|
|
* Corporation. All rights reserved.
|
|
* Copyright (c) 2004-2006 The University of Tennessee and The University
|
|
* of Tennessee Research Foundation. All rights
|
|
* reserved.
|
|
* 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$
|
|
*/
|
|
|
|
#ifndef OMPI_C_BINDINGS_H
|
|
#define OMPI_C_BINDINGS_H
|
|
|
|
#include "ompi_config.h"
|
|
#include "mpi.h"
|
|
#include "ompi/communicator/communicator.h"
|
|
#include "ompi/datatype/datatype.h"
|
|
#include "ompi/runtime/params.h"
|
|
|
|
/* This library needs to be here so that we can define
|
|
* OPAL_CR_TEST_CHECKPOINT_READY
|
|
*/
|
|
#include "opal/runtime/opal_cr.h"
|
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* If compiling in the profile directory, then we don't have weak
|
|
symbols and therefore we need the defines to map from MPI->PMPI.
|
|
NOTE: pragma weak stuff is handled on a file-by-file basis; it
|
|
doesn't work to simply list all of the pragmas in a top-level
|
|
header file. */
|
|
|
|
/* These macros have to be used to check the corectness of the datatype depending on the
|
|
* operations that we have to do with them. They can be used on all functions, not only
|
|
* on the top level MPI functions, as they does not trigger the error handler. Is the user
|
|
* responsability to do it.
|
|
*/
|
|
#define OMPI_CHECK_DATATYPE_FOR_SEND( RC, DDT, COUNT ) \
|
|
do { \
|
|
/* (RC) = MPI_SUCCESS; */ \
|
|
if( NULL == (DDT) || MPI_DATATYPE_NULL == (DDT) ) (RC) = MPI_ERR_TYPE; \
|
|
else if( (COUNT) < 0 ) (RC) = MPI_ERR_COUNT; \
|
|
else if( !ompi_ddt_is_committed((DDT)) ) (RC) = MPI_ERR_TYPE; \
|
|
else if( !ompi_ddt_is_valid((DDT)) ) (RC) = MPI_ERR_TYPE; \
|
|
} while (0)
|
|
|
|
#define OMPI_CHECK_DATATYPE_FOR_RECV( RC, DDT, COUNT ) \
|
|
do { \
|
|
/* (RC) = MPI_SUCCESS; */ \
|
|
if( NULL == (DDT) || MPI_DATATYPE_NULL == (DDT) ) (RC) = MPI_ERR_TYPE; \
|
|
else if( (COUNT) < 0 ) (RC) = MPI_ERR_COUNT; \
|
|
else if( !ompi_ddt_is_committed((DDT)) ) (RC) = MPI_ERR_TYPE; \
|
|
/* XXX Fix flags else if( ompi_ddt_is_overlapped((DDT)) ) (RC) = MPI_ERR_TYPE; */ \
|
|
else if( !ompi_ddt_is_valid((DDT)) ) (RC) = MPI_ERR_TYPE; \
|
|
} while (0)
|
|
|
|
#define OMPI_CHECK_DATATYPE_FOR_ONE_SIDED( RC, DDT, COUNT ) \
|
|
do { \
|
|
/*(RC) = MPI_SUCCESS; */ \
|
|
if( NULL == (DDT) || MPI_DATATYPE_NULL == (DDT) ) (RC) = MPI_ERR_TYPE; \
|
|
else if( (COUNT) < 0 ) (RC) = MPI_ERR_COUNT; \
|
|
else if( !ompi_ddt_is_committed((DDT)) ) (RC) = MPI_ERR_TYPE; \
|
|
else if( ompi_ddt_is_overlapped((DDT)) ) (RC) = MPI_ERR_TYPE; \
|
|
else if( !ompi_ddt_is_acceptable_for_one_sided((DDT)) ) (RC) = MPI_ERR_TYPE; \
|
|
else if( !ompi_ddt_is_valid((DDT)) ) (RC) = MPI_ERR_TYPE; \
|
|
} while(0)
|
|
|
|
|
|
/* This macro has to be used to check the correctness of the user buffer depending on the datatype.
|
|
* This macro expects that the DDT parameter is a valid pointer to an ompi datatype object.
|
|
*/
|
|
#define OMPI_CHECK_USER_BUFFER(RC, BUFFER, DDT, COUNT) \
|
|
do { \
|
|
if ( NULL == (BUFFER) && 0 < (COUNT) && MPI_SUCCESS == (RC) ) { \
|
|
if ( (DDT)->flags & DT_FLAG_PREDEFINED ) { \
|
|
(RC) = MPI_ERR_BUFFER; \
|
|
} else { \
|
|
size_t size = 0; \
|
|
ptrdiff_t true_lb = 0; \
|
|
ptrdiff_t true_extended = 0; \
|
|
ompi_ddt_type_size((DDT), &size); \
|
|
ompi_ddt_get_true_extent((DDT), &true_lb, &true_extended); \
|
|
if ( 0 < size && 0 == true_lb ) { \
|
|
(RC) = MPI_ERR_BUFFER; \
|
|
} \
|
|
} \
|
|
} \
|
|
} while (0)
|
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
}
|
|
#endif
|
|
|
|
#endif /* OMPI_C_BINDINGS_H */
|