Skip to content

Commit

Permalink
Update some further instances after rebasing
Browse files Browse the repository at this point in the history
  • Loading branch information
franzpoeschel committed Aug 15, 2022
1 parent 9f75622 commit 37d966e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion include/openPMD/RecordComponent.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
#pragma once

#include "openPMD/Dataset.hpp"
#include "openPMD/auxiliary/ShareRaw.hpp"
#include "openPMD/auxiliary/TypeTraits.hpp"
#include "openPMD/backend/BaseRecordComponent.hpp"

Expand Down
10 changes: 5 additions & 5 deletions test/SerialIOTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6600,8 +6600,8 @@ void groupbased_read_write(std::string const &ext)
auto E_y = write.iterations[0].meshes["E"]["y"];
E_x.resetDataset(ds);
E_y.resetDataset(ds);
E_x.storeChunk(shareRaw(&data), {0}, {1});
E_y.storeChunk(shareRaw(&data), {0}, {1});
E_x.storeChunkRaw(&data, {0}, {1});
E_y.storeChunkRaw(&data, {0}, {1});

E_x.setAttribute("updated_in_run", 0);
E_y.setAttribute("updated_in_run", 0);
Expand All @@ -6618,8 +6618,8 @@ void groupbased_read_write(std::string const &ext)

data = 1;

E_x.storeChunk(shareRaw(&data), {0}, {1});
E_y.storeChunk(shareRaw(&data), {0}, {1});
E_x.storeChunkRaw(&data, {0}, {1});
E_y.storeChunkRaw(&data, {0}, {1});

E_x.setAttribute("updated_in_run", 1);
E_y.setAttribute("updated_in_run", 1);
Expand Down Expand Up @@ -6655,7 +6655,7 @@ void groupbased_read_write(std::string const &ext)

data = 2;

E_x.storeChunk(shareRaw(&data), {0}, {1});
E_x.storeChunkRaw(&data, {0}, {1});
E_x.setAttribute("updated_in_run", 2);
}

Expand Down

0 comments on commit 37d966e

Please sign in to comment.