Skip to content
Snippets Groups Projects
helloBPWriter.cpp 2.75 KiB
Newer Older
wfg's avatar
wfg committed
 * helloWriter.cpp
wfg's avatar
wfg committed
 *  Created on: Feb 16, 2017
 *      Author: wfg
 */

wfg's avatar
wfg committed


#include <vector>
#include <iostream>


wfg's avatar
wfg committed
#include <mpi.h>
wfg's avatar
wfg committed

#include "ADIOS_CPP.h"


int main( int argc, char* argv [] )
{
    MPI_Init( &argc, &argv );
    int rank;
    MPI_Comm_rank( MPI_COMM_WORLD, &rank );
    const bool adiosDebug = true;
    adios::ADIOS adios( MPI_COMM_WORLD, adiosDebug );

    //Application variable
    std::vector<double> myDoubles = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
wfg's avatar
wfg committed
    const std::size_t Nx = myDoubles.size();
    const std::size_t rows = 3;
    const std::size_t columns = 3;

    std::vector<float> myMatrix;
    if( rank % 2 == 0 ) //even rank
    {
        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 );
    }

wfg's avatar
wfg committed
        //Define variable and local size
        adios::Variable<double>& ioMyDoubles = adios.DefineVariable<double>( "myDoubles", {Nx} );
        adios::Variable<float>& ioMyMatrix = adios.DefineVariable<float>( "myMatrix", {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.AddTransport( "File", "have_metadata_file=yes" ); //uses default POSIX library

        //Create engine smart pointer due to polymorphism,
        //Open returns a smart pointer to Engine containing the Derived class Writer
wfg's avatar
wfg committed
        auto bpWriter = adios.Open( "myDoubles.bp", "w", bpWriterSettings );
wfg's avatar
wfg committed
            throw std::ios_base::failure( "ERROR: couldn't create bpWriter at Open\n" );
        bpWriter->Write<double>( ioMyDoubles, myDoubles.data() ); // Base class Engine own the Write<T> that will call overloaded Write from Derived

        if( rank % 2 == 0 ) //even rank
            bpWriter->Write<float>( ioMyMatrix, myMatrix.data() );

    }
    catch( std::invalid_argument& e )
    {
        if( rank == 0 )
        {
            std::cout << "Invalid argument exception, STOPPING PROGRAM\n";
            std::cout << e.what() << "\n";
        }
    }
    catch( std::ios_base::failure& e )
    {
        if( rank == 0 )
        {
            std::cout << "System exception, STOPPING PROGRAM\n";
            std::cout << e.what() << "\n";
        }
    }
    catch( std::exception& e )
    {
        if( rank == 0 )
        {
            std::cout << "Exception, STOPPING PROGRAM\n";
            std::cout << e.what() << "\n";
        }
    }

    MPI_Finalize( );

    return 0;

}