Skip to content

Commit

Permalink
Merge pull request #158 from pnorbert/remove_basic_xmls
Browse files Browse the repository at this point in the history
removed xml files from basic examples
  • Loading branch information
pnorbert authored Jun 20, 2017
2 parents 2623089 + ab39267 commit 8f30141
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 48 deletions.
10 changes: 0 additions & 10 deletions examples/basics/globalArray/globalArray.xml

This file was deleted.

4 changes: 2 additions & 2 deletions examples/basics/globalArray/globalArray_write.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ int main(int argc, char *argv[])
const int NSTEPS = 5;

#ifdef ADIOS2_HAVE_MPI
adios2::ADIOS adios("globalArray.xml", MPI_COMM_WORLD);
adios2::ADIOS adios(MPI_COMM_WORLD);
#else
adios2::ADIOS adios("globalArray.xml");
adios2::ADIOS adios;
#endif

// Application variables for output
Expand Down
10 changes: 0 additions & 10 deletions examples/basics/joinedArray/joinedArray.xml

This file was deleted.

4 changes: 2 additions & 2 deletions examples/basics/joinedArray/joinedArray_write.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ int main(int argc, char *argv[])
srand(rank * 32767);

#ifdef ADIOS2_HAVE_MPI
adios2::ADIOS adios("localArray.xml", MPI_COMM_WORLD);
adios2::ADIOS adios(MPI_COMM_WORLD);
#else
adios2::ADIOS adios("localArray.xml");
adios2::ADIOS adios;
#endif

// Application variables for output
Expand Down
10 changes: 0 additions & 10 deletions examples/basics/localArray/localArray.xml

This file was deleted.

4 changes: 2 additions & 2 deletions examples/basics/localArray/localArray_write.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ int main(int argc, char *argv[])
srand(rank * 32767);

#ifdef ADIOS2_HAVE_MPI
adios2::ADIOS adios("localArray.xml", MPI_COMM_WORLD);
adios2::ADIOS adios(MPI_COMM_WORLD);
#else
adios2::ADIOS adios("localArray.xml");
adios2::ADIOS adios;
#endif

// Application variables for output
Expand Down
10 changes: 0 additions & 10 deletions examples/basics/values/values.xml

This file was deleted.

4 changes: 2 additions & 2 deletions examples/basics/values/values_write.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ int main(int argc, char *argv[])
srand(rank * 32767);

#ifdef ADIOS2_HAVE_MPI
adios2::ADIOS adios("values.xml", MPI_COMM_WORLD);
adios2::ADIOS adios(MPI_COMM_WORLD);
#else
adios2::ADIOS adios("values.xml");
adios2::ADIOS adios;
#endif

// Application variables for output
Expand Down

0 comments on commit 8f30141

Please sign in to comment.