Newer
Older
#include <cstdint>
Podhorszki, Norbert
committed
#include <iomanip>
#include <iostream>
#include <math.h>
#include <memory>
#include <stdexcept>
#include <string>
Podhorszki, Norbert
committed
int main(int argc, char *argv[])
{
MPI_Init(&argc, &argv);
if (argc < 2)
{
std::cout << "Not enough arguments: need an input file\n";
return 1;
Podhorszki, Norbert
committed
}
const char *inputfile = argv[1];
Podhorszki, Norbert
committed
/* World comm spans all applications started with the same aprun command
on a Cray XK6. So we have to split and create the local
'world' communicator for the reader only.
In normal start-up, the communicator will just equal the MPI_COMM_WORLD.
*/
int wrank, wnproc;
MPI_Comm_rank(MPI_COMM_WORLD, &wrank);
MPI_Comm_size(MPI_COMM_WORLD, &wnproc);
MPI_Barrier(MPI_COMM_WORLD);
const unsigned int color = 2;
MPI_Comm mpiReaderComm;
MPI_Comm_split(MPI_COMM_WORLD, color, wrank, &mpiReaderComm);
int rank, nproc;
MPI_Comm_rank(mpiReaderComm, &rank);
MPI_Comm_size(mpiReaderComm, &nproc);
adios_read_init_method(ADIOS_READ_METHOD_BP, mpiReaderComm, "verbose=3");
Podhorszki, Norbert
committed
ADIOS_FILE *f;
f = adios_read_open_file(inputfile, ADIOS_READ_METHOD_BP, mpiReaderComm);
Podhorszki, Norbert
committed
if (f == NULL)
{
std::cout << adios_errmsg() << std::endl;
return -1;
}
ADIOS_VARINFO *vgndx = adios_inq_var(f, "gndx");
ADIOS_VARINFO *vgndy = adios_inq_var(f, "gndy");
Podhorszki, Norbert
committed
unsigned int gndx = *(unsigned int *)vgndx->value;
unsigned int gndy = *(unsigned int *)vgndy->value;
Podhorszki, Norbert
committed
if (rank == 0)
{
Podhorszki, Norbert
committed
std::cout << "gndx = " << gndx << std::endl;
std::cout << "gndy = " << gndy << std::endl;
}
adios_free_varinfo(vgndx);
adios_free_varinfo(vgndy);
Podhorszki, Norbert
committed
// 1D decomposition of the columns, which is inefficient for reading!
uint64_t readsize[2] = {gndx, gndy / nproc};
uint64_t offset[2] = {0LL, rank * readsize[1]};
size_t readsize_size_t[2] = {gndx, gndy / nproc};
size_t offset_size_t[2] = {0LL, rank * readsize[1]};
if (rank == nproc - 1)
Podhorszki, Norbert
committed
{
// last process should read all the rest of columns
readsize[1] = gndy - readsize[1] * (nproc - 1);
Podhorszki, Norbert
committed
}
std::cout << "rank " << rank << " reads " << readsize[1]
<< " columns from offset " << offset[1] << std::endl;
Podhorszki, Norbert
committed
ADIOS_VARINFO *vT = adios_inq_var(f, "T");
Podhorszki, Norbert
committed
double *T = new double[vT->nsteps * readsize[0] * readsize[1]];
Podhorszki, Norbert
committed
// Create a 2D selection for the subset
ADIOS_SELECTION *sel = adios_selection_boundingbox(2, offset, readsize);
Podhorszki, Norbert
committed
// Arrays are read by scheduling one or more of them
// and performing the reads at once
adios_schedule_read(f, sel, "T", 0, vT->nsteps, T);
adios_perform_reads(f, 1);
Podhorszki, Norbert
committed
printData(T, readsize_size_t, offset_size_t, rank, vT->nsteps);
adios_read_close(f);
adios_free_varinfo(vT);
Podhorszki, Norbert
committed
delete[] T;
// Terminate
adios_selection_delete(sel);
adios_read_finalize_method(ADIOS_READ_METHOD_BP);
Podhorszki, Norbert
committed
MPI_Finalize();
return 0;
}