33 lines
597 B
C
33 lines
597 B
C
/*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#ifndef OMPI_MPI_EXT_H
|
|
#define OMPI_MPI_EXT_H 1
|
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define OMPI_HAVE_MPI_EXT 1
|
|
|
|
/* Enabled Extension: affinity */
|
|
#define OMPI_HAVE_MPI_EXT_AFFINITY 1
|
|
#include "openmpi/mpiext/mpiext_affinity_c.h"
|
|
|
|
/* Enabled Extension: cuda */
|
|
#define OMPI_HAVE_MPI_EXT_CUDA 1
|
|
#include "openmpi/mpiext/mpiext_cuda_c.h"
|
|
|
|
/* Enabled Extension: pcollreq */
|
|
#define OMPI_HAVE_MPI_EXT_PCOLLREQ 1
|
|
#include "openmpi/mpiext/mpiext_pcollreq_c.h"
|
|
|
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
}
|
|
#endif
|
|
|
|
#endif /* OMPI_MPI_EXT_H */
|
|
|