Skip to content
Snippets Groups Projects
Commit 8969d785 authored by Atkins, Charles Vernon's avatar Atkins, Charles Vernon Committed by williamfgc
Browse files

Fix no-mpi build issues (#9)

parent d26769e8
No related branches found
No related tags found
1 merge request!124Refactor
......@@ -14,7 +14,6 @@
#error "Inline file should only be included from it's header, never on it's own"
#endif
#include "adios2/ADIOSMPI.h"
#include "adios2/ADIOSMacros.h"
#include "adios2/helper/adiosFunctions.h" //BuildParametersMap
......
......@@ -74,13 +74,13 @@ private:
Variable<T> *InquireVariableCommon(const std::string name,
const bool readIn)
{
int rank = 0;
MPI_Comm_rank(m_MPIComm, &rank);
//int rank = 0;
//MPI_Comm_rank(m_MPIComm, &rank);
std::cout << "I am hooked to the DataMan library\n";
std::cout << "Hello DatamanReader from rank " << rank << "\n";
std::cout << "Trying to read variable " << name
<< " from one of the variables coming from a WAN transport\n";
//std::cout << "I am hooked to the DataMan library\n";
//std::cout << "Hello DatamanReader from rank " << rank << "\n";
//std::cout << "Trying to read variable " << name
// << " from one of the variables coming from a WAN transport\n";
// here read variable metadata (dimensions, type, etc.)...then create a
// Variable like below:
......
......@@ -25,6 +25,7 @@
#endif
#include "adios2/ADIOSMacros.h"
#include "adios2/ADIOSMPICommOnly.h"
#include "adios2/ADIOSTypes.h"
namespace adios
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment