Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
68521cd
Add memory selection task to backend
franzpoeschel Aug 7, 2025
3f7b894
Add future helper
franzpoeschel Aug 7, 2025
cf2295b
Fixes for UniquePtr.hpp
franzpoeschel Aug 7, 2025
f698c25
Main implementation of LoadStoreChunk.hpp
franzpoeschel Aug 7, 2025
51ce207
Adapt RecordComponent implementation based on new API
franzpoeschel Aug 7, 2025
3063d62
Testing
franzpoeschel Aug 7, 2025
4d9198c
Enable support for const unique pointers?
franzpoeschel Aug 7, 2025
c21e608
Use a better trick to cheat clang-tidy
franzpoeschel Aug 7, 2025
51b4363
clang-tidy fixes
franzpoeschel Aug 8, 2025
c8c648d
Fix linker error
franzpoeschel Jan 8, 2026
92103ee
Reimplement unique_ptr-based span API
franzpoeschel Jan 8, 2026
7392415
Fix parallel tests
franzpoeschel Jan 8, 2026
06797e4
Type signature fix
franzpoeschel Jan 8, 2026
64d8606
Destructor for ~DeferredComputation
franzpoeschel Jan 9, 2026
77b731d
CI fixes
franzpoeschel Feb 3, 2026
db35556
wip: runtime-erase pointer type
franzpoeschel Feb 9, 2026
b87f4c0
Continue
franzpoeschel Feb 9, 2026
1e015ca
Mostly working again
franzpoeschel Feb 9, 2026
5d9c48c
bad fix, remove the bool from python bindings
franzpoeschel Feb 9, 2026
8ce5ade
Remove bool dataset operations from python API
franzpoeschel Feb 9, 2026
69560e0
Fix Coretest
franzpoeschel Feb 9, 2026
3545bb2
instantiate some more methods
franzpoeschel Feb 10, 2026
f1621c2
wip: unify common code into compiled functions
franzpoeschel Feb 10, 2026
a3fe3c2
clang-tidy fixes
franzpoeschel Feb 10, 2026
c7b0fbb
CI fixes
franzpoeschel Feb 11, 2026
529e533
Remove CRT pattern and core namespace
franzpoeschel Feb 12, 2026
fe6ba78
Move wrappers to header code
franzpoeschel Feb 12, 2026
d66ce95
Interface cleanup
franzpoeschel Feb 13, 2026
7f55724
Fix after rebase
franzpoeschel Mar 12, 2026
ad26c7f
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Mar 12, 2026
14c0251
Suffix ..Raw for internal legacy store/load operations
franzpoeschel Apr 7, 2026
a29cfcc
Remove enqueue prefixes, these are now default
franzpoeschel Apr 7, 2026
37924fc
Add future task with caching option
franzpoeschel Apr 7, 2026
c01e277
Add unsafeNoAutomaticFlush
franzpoeschel Apr 7, 2026
ee5e4f0
add missing constructor
franzpoeschel Apr 7, 2026
fb97579
remove internal use of raw methods
franzpoeschel Apr 7, 2026
3a33740
Remove raw methods
franzpoeschel Apr 7, 2026
f612b87
Avoid if constexpr, msvc doesnt get it
franzpoeschel Apr 8, 2026
4e22c20
Add Doxygen documentation to new functions and types
Apr 8, 2026
2bfc947
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Apr 8, 2026
1a84201
CI fixes
franzpoeschel Apr 8, 2026
65ddc5c
Documentation fixes
franzpoeschel Apr 14, 2026
3c76383
AI code review
franzpoeschel Apr 20, 2026
4268568
Rename forget() -> invalidate()
franzpoeschel Apr 20, 2026
e84e05c
Fix MSVC compilation
franzpoeschel Apr 21, 2026
2301ea2
Fix move constructor / assignment operator
franzpoeschel Apr 22, 2026
3ba15d5
Add a small test for DeferredComputation
franzpoeschel Apr 22, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -400,6 +400,7 @@ set(CORE_SOURCE
src/Format.cpp
src/Iteration.cpp
src/IterationEncoding.cpp
src/LoadStoreChunk.cpp
src/Mesh.cpp
src/ParticlePatches.cpp
src/ParticleSpecies.cpp
Expand All @@ -411,6 +412,7 @@ set(CORE_SOURCE
src/version.cpp
src/auxiliary/Date.cpp
src/auxiliary/Filesystem.cpp
src/auxiliary/Future.cpp
src/auxiliary/JSON.cpp
src/auxiliary/JSONMatcher.cpp
src/auxiliary/Memory.cpp
Expand Down
12 changes: 12 additions & 0 deletions include/openPMD/Dataset.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,18 @@ namespace openPMD
using Extent = std::vector<std::uint64_t>;
using Offset = std::vector<std::uint64_t>;

/** Selection of a region of memory for storing chunks.
*
* Used to specify a non-contiguous memory region when storing
* data chunks. This allows writing data that is not contiguous
* in memory.
*/
struct MemorySelection
{
Offset offset;
Extent extent;
};

class Dataset
{
friend class RecordComponent;
Expand Down
62 changes: 59 additions & 3 deletions include/openPMD/Datatype.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -420,6 +420,11 @@ inline size_t toBits(Datatype d)
return toBytes(d) * CHAR_BIT;
}

/** Check if a Datatype is a signed type
*
* @param d Datatype to test
* @return true if signed type (integer, floating point, complex), else false
*/
constexpr bool isSigned(Datatype d);

/** Compare if a Datatype is a vector type
Expand Down Expand Up @@ -602,6 +607,13 @@ inline bool isSameFloatingPoint(Datatype d)
return isSameFloatingPoint(d, determineDatatype<T_FP>());
}

/** Compare if two Datatypes are equivalent floating point types
*
* @param d1 First Datatype to compare
* @param d2 Second Datatype to compare
* @return true if both types are floating point and have same bitness, else
* false
*/
inline bool isSameFloatingPoint(Datatype d1, Datatype d2)
{
// template
Expand Down Expand Up @@ -629,6 +641,13 @@ inline bool isSameComplexFloatingPoint(Datatype d)
return isSameComplexFloatingPoint(d, determineDatatype<T_CFP>());
}

/** Compare if two Datatypes are equivalent complex floating point types
*
* @param d1 First Datatype to compare
* @param d2 Second Datatype to compare
* @return true if both types are complex floating point and have same bitness,
* else false
*/
inline bool isSameComplexFloatingPoint(Datatype d1, Datatype d2)
{
// template
Expand Down Expand Up @@ -656,6 +675,13 @@ inline bool isSameInteger(Datatype d)
return isSameInteger(d, determineDatatype<T_Int>());
}

/** Compare if two Datatypes are equivalent integer types
*
* @param d1 First Datatype to compare
* @param d2 Second Datatype to compare
* @return true if both types are integers, same signedness and same bitness,
* else false
*/
inline bool isSameInteger(Datatype d1, Datatype d2)
{
// template
Expand Down Expand Up @@ -708,13 +734,24 @@ constexpr bool isChar(Datatype d)
template <typename T_Char>
constexpr bool isSameChar(Datatype d);

/** Compare if two Datatypes are equivalent char types
*
* @param d1 First Datatype to compare
* @param d2 Second Datatype to compare
* @return true if both types are chars with same signedness and size, else
* false
*/
constexpr bool isSameChar(Datatype d1, Datatype d2);

/** Comparison for two Datatypes
*
* Besides returning true for the same types, identical implementations on
* some platforms, e.g. if long and long long are the same or double and
* long double will also return true.
*
* @param d First Datatype to compare
* @param e Second Datatype to compare
* @return true if the datatypes are equivalent
*/
constexpr bool isSame(openPMD::Datatype d, openPMD::Datatype e);

Expand All @@ -726,15 +763,34 @@ constexpr bool isSame(openPMD::Datatype d, openPMD::Datatype e);
*/
Datatype basicDatatype(Datatype dt);

/** Convert a scalar Datatype to its vector variant
*
* @param dt Scalar Datatype to convert
* @return Vector Datatype (e.g., INT becomes VEC_INT)
*/
Datatype toVectorType(Datatype dt);

/** Convert a Datatype to its string representation
*
* @param dt Datatype to convert
* @return String representation of the Datatype
*/
std::string datatypeToString(Datatype dt);

/** Convert a string to a Datatype
*
* @param s String representation of a Datatype
* @return The corresponding Datatype
*/
Datatype stringToDatatype(const std::string &s);

void warnWrongDtype(std::string const &key, Datatype store, Datatype request);

std::ostream &operator<<(std::ostream &, openPMD::Datatype const &);
/** Stream operator for Datatype
*
* @param os Output stream
* @param dt Datatype to output
* @return Reference to the stream
*/
std::ostream &operator<<(std::ostream &os, openPMD::Datatype const &dt);

template <typename T>
constexpr auto datatypeIndex() -> size_t
Expand Down
55 changes: 33 additions & 22 deletions include/openPMD/Datatype.tpp
Original file line number Diff line number Diff line change
Expand Up @@ -223,36 +223,52 @@ namespace detail
template <typename T>
constexpr bool is_char_v = is_char<T>::value;

template <typename T_Char1, typename T_Char2>
inline bool isSameChar()
struct IsChar
{
return
// both must be char types
is_char_v<T_Char1> && is_char_v<T_Char2> &&
// both must have equivalent sign
std::is_signed_v<T_Char1> == std::is_signed_v<T_Char2> &&
// both must have equivalent size
sizeof(T_Char1) == sizeof(T_Char2);
template <typename T>
static constexpr bool call()
{
return is_char_v<T>;
}
template <size_t N>
static constexpr bool call()
{
return false;
}
};

constexpr inline bool isChar(Datatype dtype)
{
return switchType<IsChar>(dtype);
}

template <typename T1>
struct IsSameChar
struct DtypeSize
{
template <typename T2>
static bool call()
template <typename T>
static constexpr size_t call()
{
return isSameChar<T1, T2>();
return sizeof(T);
}

static constexpr char const *errorMsg = "IsSameChar";
static constexpr char const *errorMsg = "DtypeSize";
};

constexpr inline size_t dtypeSize(Datatype dtype)
{
return switchType<DtypeSize>(dtype);
}
} // namespace detail

template <typename T_Char>
constexpr inline bool isSameChar(Datatype d)
{
return switchType<detail::IsSameChar<T_Char>>(d);
return isSameChar(d, determineDatatype<T_Char>());
}

constexpr bool isSameChar(Datatype d1, Datatype d2)
{
return detail::isChar(d1) && detail::isChar(d2) &&
isSigned(d1) == isSigned(d2) &&
detail::dtypeSize(d1) == detail::dtypeSize(d2);
}

namespace detail
Expand Down Expand Up @@ -285,11 +301,6 @@ constexpr inline bool isSigned(Datatype d)
return switchType<detail::IsSigned>(d);
}

constexpr inline bool isSameChar(Datatype d, Datatype e)
{
return isChar(d) && isChar(e) && isSigned(d) == isSigned(e);
}

constexpr bool isSame(openPMD::Datatype const d, openPMD::Datatype const e)
{
return
Expand Down
4 changes: 4 additions & 0 deletions include/openPMD/IO/ADIOS/ADIOS2File.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
*/
#pragma once

#include "openPMD/Dataset.hpp"
#include "openPMD/IO/ADIOS/ADIOS2Auxiliary.hpp"
#include "openPMD/IO/ADIOS/ADIOS2PreloadAttributes.hpp"
#include "openPMD/IO/ADIOS/ADIOS2PreloadVariables.hpp"
Expand Down Expand Up @@ -107,11 +108,14 @@ struct WriteDataset
static void call(Params &&...);
};

/** Buffered put operation with unique pointer */
struct BufferedUniquePtrPut
{
std::string name;
Offset offset;
Extent extent;
/** Optional memory selection for non-contiguous memory regions */
std::optional<MemorySelection> memorySelection;
UniquePtrWithLambda<void> data;
Datatype dtype = Datatype::UNDEFINED;

Expand Down
19 changes: 17 additions & 2 deletions include/openPMD/IO/ADIOS/ADIOS2IOHandler.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
*/
#pragma once

#include "openPMD/Dataset.hpp"
#include "openPMD/Error.hpp"
#include "openPMD/IO/ADIOS/ADIOS2Auxiliary.hpp"
#include "openPMD/IO/ADIOS/ADIOS2FilePosition.hpp"
Expand Down Expand Up @@ -509,6 +510,7 @@ class ADIOS2IOHandlerImpl
adios2::Variable<T> verifyDataset(
Offset const &offset,
Extent const &extent,
std::optional<MemorySelection> const &memorySelection,
adios2::IO &IO,
adios2::Engine &engine,
std::string const &varName,
Expand Down Expand Up @@ -622,13 +624,26 @@ class ADIOS2IOHandlerImpl
var.SetSelection(
{adios2::Dims(offset.begin(), offset.end()),
adios2::Dims(extent.begin(), extent.end())});

if (memorySelection.has_value())
{
var.SetMemorySelection(
{adios2::Dims(
memorySelection->offset.begin(),
memorySelection->offset.end()),
adios2::Dims(
memorySelection->extent.begin(),
memorySelection->extent.end())});
}

return var;
}

struct
{
bool noGroupBased = false;
bool blosc2bp5 = false;
bool memorySelection = false;
} printedWarningsAlready;
}; // ADIOS2IOHandlerImpl

Expand Down Expand Up @@ -942,7 +957,7 @@ class ADIOS2IOHandler : public AbstractIOHandler
try
{
auto params = internal::defaultParsedFlushParams;
this->flush(params);
this->flush_impl(params);
}
catch (std::exception const &ex)
{
Expand Down Expand Up @@ -990,6 +1005,6 @@ class ADIOS2IOHandler : public AbstractIOHandler
return true;
}

std::future<void> flush(internal::ParsedFlushParams &) override;
std::future<void> flush_impl(internal::ParsedFlushParams &) override;
}; // ADIOS2IOHandler
} // namespace openPMD
28 changes: 28 additions & 0 deletions include/openPMD/IO/ADIOS/macros.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,34 @@
#define openPMD_HAVE_ADIOS2_BP5 0
#endif

namespace openPMD
{
namespace detail
{
/** Trait to check if a variable supports SetMemorySelection
*
* @tparam Variable ADIOS2 variable type
*/
template <typename Variable, typename SFINAE = void>
struct CanTheMemorySelectionBeReset
{
static constexpr bool value = false;
};

template <typename Variable>
struct CanTheMemorySelectionBeReset<
Variable,
decltype(std::declval<Variable>().SetMemorySelection())>
{
static constexpr bool value = true;
};
} // namespace detail

/** Whether ADIOS2 Variable supports SetMemorySelection */
constexpr bool CanTheMemorySelectionBeReset =
detail::CanTheMemorySelectionBeReset<adios2::Variable<int>>::value;
} // namespace openPMD

#else

#define openPMD_HAS_ADIOS_2_8 0
Expand Down
21 changes: 20 additions & 1 deletion include/openPMD/IO/AbstractIOHandler.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -265,13 +265,21 @@ class AbstractIOHandler
* backends that decide to implement this operation asynchronously.
*/
std::future<void> flush(internal::FlushParams const &);
/** Counter tracking the number of flush operations. This is later used to
* avoid repeated flushing in the DeferredComputation objects returned by
* the loadStoreChunk() API. (The counter is copied as a weak reference to
* the shared pointer, and the value is compared to the value upon enqueuing
* the operation. If the flush counter has proceeded past the old value, our
* operation has already been run.) */
std::shared_ptr<unsigned long long> m_flushCounter =
std::make_shared<unsigned long long>(0);

/** Process operations in queue according to FIFO.
*
* @return Future indicating the completion state of the operation for
* backends that decide to implement this operation asynchronously.
*/
virtual std::future<void> flush(internal::ParsedFlushParams &) = 0;
std::future<void> flush(internal::ParsedFlushParams &);

/** The currently used backend */
virtual std::string backendName() const = 0;
Expand Down Expand Up @@ -315,6 +323,17 @@ class AbstractIOHandler
IterationEncoding m_encoding = IterationEncoding::groupBased;
OpenpmdStandard m_standard = auxiliary::parseStandard(getStandardDefault());
bool m_verify_homogeneous_extents = true;

protected:
/** Implementation of flush operation for subclasses
*
* Do not call directly, use flush() wrapper instead.
*
* @param params Parsed flush parameters
* @return Future indicating completion state
*/
virtual std::future<void>
flush_impl(internal::ParsedFlushParams &params) = 0;
}; // AbstractIOHandler

} // namespace openPMD
Loading
Loading