Newer
Older
/*
* timeBPWriter.cpp example for time aggregation
*
* Created on: Feb 16, 2017
* Author: wfg
*/
#include <iostream>
#include "ADIOS_CPP.h"
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
const bool adiosDebug = true;
adios::ADIOS adios(adios::Verbose::ERROR, adiosDebug);
// Application variable
std::vector<double> myDoubles = {10, 1, 2, 3, 4, 5, 6, 7, 8, 9};
const std::size_t Nx = myDoubles.size();
const std::size_t rows = 3;
const std::size_t columns = 3;
std::vector<float> myMatrix;
myMatrix.reserve(rows * columns);
myMatrix.push_back(1);
myMatrix.push_back(2), myMatrix.push_back(3);
myMatrix.push_back(4);
myMatrix.push_back(5), myMatrix.push_back(6);
myMatrix.push_back(7);
myMatrix.push_back(8), myMatrix.push_back(8);
std::vector<float> myMatrix2 = {-1, -2, -3, -4, -5, -6, -7, -8, -9};
try
{
// Define variable and local size
adios::Variable<double> &ioMyDoubles =
adios.DefineVariable<double>("myDoubles", {Nx});
adios::Variable<float> &ioMyMatrix =
adios.DefineVariable<float>("myMatrix", {rows, columns});
adios::Variable<float> &ioMyMatrix2 =
adios.DefineVariable<float>("myMatrix2", {rows, columns});
// Define method for engine creation, it is basically straight-forward
// parameters
adios::Method &bpWriterSettings =
adios.DeclareMethod("SingleFile"); // default method type is BPWriter
bpWriterSettings.SetParameters("profile_units=mus");
bpWriterSettings.AddTransport(
"File", "profile_units=mus",
"have_metadata_file=no"); // uses default POSIX library
// Create object directly rather than using polymorphism with ADIOS.Open
adios::BPFileWriter bpWriter(adios, "time_nompi.bp", "w", adios.m_MPIComm,
bpWriterSettings);
for (unsigned int t = 0; t < 3; ++t)
myDoubles[0] = t; // t * -1;
myMatrix[0] = t;
myMatrix2[0] = t;
bpWriter.Write(ioMyDoubles, myDoubles.data()); // Base class Engine own
// the Write<T> that will
// call overloaded Write
// from Derived
bpWriter.Write(ioMyMatrix, myMatrix.data());
bpWriter.Write(ioMyMatrix2, myMatrix2.data());
bpWriter.Advance();
bpWriter.Close();
}
catch (std::invalid_argument &e)
{
std::cout << "Invalid argument exception, STOPPING PROGRAM\n";
std::cout << e.what() << "\n";
}
catch (std::ios_base::failure &e)
{
std::cout << "System exception, STOPPING PROGRAM\n";
std::cout << e.what() << "\n";
}
catch (std::exception &e)
{
std::cout << "Exception, STOPPING PROGRAM\n";
std::cout << e.what() << "\n";
}
return 0;