/usr/include/adios_mpi.h is in libadios-dev 1.9.0-7build2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | /*
* ADIOS is freely available under the terms of the BSD license described
* in the COPYING file in the top level directory of this source distribution.
*
* Copyright (c) 2008 - 2009. UT-BATTELLE, LLC. All rights reserved.
*/
#ifndef ADIOS_MPI_H
#define ADIOS_MPI_H
#ifdef _NOMPI
/* Sequential processes can use the library compiled with -D_NOMPI */
# include "mpidummy.h"
#else
/* Parallel applications should use MPI to communicate file info and slices of data */
# include "mpi.h"
#endif
#endif
|