Skip to content

Commit

Permalink
CI fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
franzpoeschel committed Dec 19, 2024
1 parent 91378e8 commit 585b084
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/IO/ADIOS/ADIOS2IOHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
#include <iostream>
#include <iterator>
#include <memory>
#include <mpi.h>
#include <numeric>
#include <set>
#include <sstream>
Expand Down Expand Up @@ -1499,6 +1498,7 @@ namespace
auxiliary::openPMD_MPI_type<size_t>(),
0,
comm);
std::cout << "SIZES: " << vec_as_string(sizes) << '\n';
size_t total_flat_size =
std::accumulate(sizes.begin(), sizes.end(), size_t(0));
using flat_type = typename T::value_type;
Expand Down Expand Up @@ -1551,8 +1551,8 @@ namespace
comm);
if (rank != 0)
{
put_result_here = std::move(receive);
std::cout << "RECEIVED: " << vec_as_string(receive) << '\n';
put_result_here = std::move(receive);
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion test/Files_ParallelIO/read_variablebased_randomaccess.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

#include <catch2/catch.hpp>

#if openPMD_HAVE_ADIOS2 && openPMD_HAVE_MPI
#if openPMD_HAVE_ADIOS2 && openPMD_HAVE_MPI && openPMD_HAS_ADIOS_2_9
#include <adios2.h>
#include <mpi.h>

Expand Down

0 comments on commit 585b084

Please sign in to comment.