Skip to content

Commit

Permalink
Make linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
pgrete committed Aug 7, 2024
1 parent 5f95466 commit 6811594
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/outputs/parthenon_opmd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
//! \file parthenon_openpmd.cpp
// \brief Output for OpenPMD https://www.openpmd.org/ (supporting various backends)

#include <algorithm>
#include <cstddef>
#include <cstdint>
#include <cstdio>
Expand All @@ -25,6 +26,7 @@
#include <sstream>
#include <string>
#include <tuple>
#include <utility>
#include <vector>

// Parthenon headers
Expand Down Expand Up @@ -524,7 +526,7 @@ void OpenPMDOutput::WriteOutputFile(Mesh *pm, ParameterInput *pin, SimTime *tm,
if (out_var->IsAllocated()) {
// TODO(pgrete) check if we can work with a direct copy from a subview to not
// duplicate the memory footprint here
#if 0
#if 0
// Pick a subview of the active cells of this component
auto const data = Kokkos::subview(
var->data, 0, 0, icomp, std::make_pair(kb.s, kb.e + 1),
Expand Down

0 comments on commit 6811594

Please sign in to comment.