53 template <MemoryArray A>
54 void resize_or_check(A &a, std::array<long, A::rank>
const &shape) {
55 if constexpr (is_regular_v<A>) {
58 if (a.shape() != shape) NDA_RUNTIME_ERROR <<
"Error in nda::detail::resize_or_check: Dimension mismatch: " << shape <<
" != " << a.shape();
63 template <MemoryArray A>
64 auto prepare_h5_array_view(
const A &a) {
65 auto [parent_shape, h5_strides] = h5::array_interface::get_parent_shape_and_h5_strides(a.indexmap().strides().data(), A::rank, a.size());
67 for (
int u = 0; u < A::rank; ++u) {
68 v.slab.count[u] = a.shape()[u];
69 v.slab.stride[u] = h5_strides[u];
70 v.parent_shape[u] = parent_shape[u];
76 template <MemoryArrayOfRank<1> A>
77 h5::char_buf to_char_buf(A
const &a) {
80 for (
auto &x : a) s = std::max(s, x.size() + 1);
83 std::vector<char> buf;
84 buf.resize(a.size() * s, 0x00);
87 strcpy(&buf[i * s], x.c_str());
92 auto len = h5::v_t{size_t(a.size()), s};
97 template <MemoryArrayOfRank<1> A>
98 void from_char_buf(h5::char_buf
const &cb, A &a) {
100 resize_or_check(a, std::array<long, 1>{
static_cast<long>(cb.lengths[0])});
103 auto len_string = cb.lengths[1];
107 x.append(&cb.buffer[i * len_string]);
129 template <MemoryArray A>
130 void h5_write(h5::group g, std::string
const &name, A
const &a,
bool compress =
true) {
131 if constexpr (std::is_same_v<typename A::value_type, std::string>) {
133 h5_write(g, name, detail::to_char_buf(a));
137 if (not a.indexmap().is_stride_order_C()) {
139 auto a_c_layout = h5_arr_t{a.shape()};
141 h5_write(g, name, a_c_layout, compress);
146 auto v = detail::prepare_h5_array_view(a);
147 h5::array_interface::write(g, name, v, compress);
150 auto g2 = g.create_group(name);
153 nda::for_each(a.shape(), [&](
auto... is) { h5_write(g2, make_name(is...), a(is...)); });
172 template <
size_t NDim,
typename... IRs>
175 static constexpr auto size_of_slice =
sizeof...(IRs);
178 static constexpr auto ellipsis_count = (std::is_same_v<IRs, ellipsis> + ... + 0);
179 static_assert(ellipsis_count < 2,
"Error in nda::hyperslab_and_shape_from_slice: Only a single ellipsis is allowed in slicing");
180 static constexpr auto has_ellipsis = (ellipsis_count == 1);
183 static constexpr auto ellipsis_position = [&]<
size_t... Is>(std::index_sequence<Is...>) {
184 if constexpr (has_ellipsis)
return ((std::is_same_v<IRs, ellipsis> * Is) + ... + 0);
185 return size_of_slice;
186 }(std::index_sequence_for<IRs...>{});
189 static constexpr auto integer_count = (std::integral<IRs> + ... + 0);
192 static constexpr auto range_count = size_of_slice - integer_count - ellipsis_count;
193 static_assert((has_ellipsis && range_count <= NDim) || range_count == NDim,
194 "Error in nda::hyperslab_and_shape_from_slice: Rank does not match the number of non-trivial slice dimensions");
197 static constexpr auto ellipsis_width = NDim - range_count;
200 static constexpr auto slab_rank = NDim + integer_count;
203 auto ds_rank = ds_shape.size() - is_complex;
204 if (slab_rank != ds_rank)
205 NDA_RUNTIME_ERROR <<
"Error in nda::hyperslab_and_shape_from_slice: Incompatible dataset and slice ranks: " << ds_rank
206 <<
" != " << size_of_slice;
209 auto slab = h5::array_interface::hyperslab(slab_rank, is_complex);
210 auto shape = std::array<long, NDim>{};
211 [&, m = 0]<
size_t... Is>(std::index_sequence<Is...>)
mutable {
213 [&]<
typename IR>(
size_t n, IR
const &ir)
mutable {
214 if (n > ellipsis_position) n += (ellipsis_width - 1);
215 if constexpr (std::integral<IR>) {
218 }
else if constexpr (std::is_same_v<IR, nda::ellipsis>) {
219 for (
auto k : range(n, n + ellipsis_width)) {
220 slab.count[k] = ds_shape[k];
221 shape[m++] = ds_shape[k];
223 }
else if constexpr (std::is_same_v<IR, nda::range>) {
224 slab.offset[n] = ir.first();
225 slab.stride[n] = ir.step();
226 slab.count[n] = ir.size();
227 shape[m++] = ir.size();
229 static_assert(std::is_same_v<IR, nda::range::all_t>);
230 slab.count[n] = ds_shape[n];
231 shape[m++] = ds_shape[n];
233 }(Is, std::get<Is>(slice)),
235 }(std::make_index_sequence<size_of_slice>{});
236 return std::make_pair(slab, shape);
255 template <MemoryArray A,
typename... IRs>
256 void h5_write(h5::group g, std::string
const &name, A
const &a, std::tuple<IRs...>
const &slice) {
258 constexpr int size_of_slice =
sizeof...(IRs);
259 static_assert(size_of_slice > 0,
"Error in nda::h5_write: Invalid empty slice");
264 if (not a.indexmap().is_stride_order_C()) {
266 auto a_c_layout = h5_arr_t{a.shape()};
268 h5_write(g, name, a_c_layout, slice);
273 auto ds_info = h5::array_interface::get_dataset_info(g, name);
274 if (is_complex != ds_info.has_complex_attribute)
275 NDA_RUNTIME_ERROR <<
"Error in nda::h5_write: Dataset and array/view must both be complex or non-complex";
279 if (sh != a.shape()) NDA_RUNTIME_ERROR <<
"Error in nda::h5_write: Incompatible slice and array shape: " << sh <<
" != " << a.shape();
282 auto v = detail::prepare_h5_array_view(a);
283 h5::array_interface::write_slice(g, name, v, sl);
307 template <MemoryArray A,
typename... IRs>
308 void h5_read(h5::group g, std::string
const &name, A &a, std::tuple<IRs...>
const &slice = {}) {
309 constexpr bool slicing = (
sizeof...(IRs) > 0);
311 if constexpr (std::is_same_v<typename A::value_type, std::string>) {
313 static_assert(!slicing,
"Error in nda::h5_read: Slicing not supported for arrays/views of strings");
316 detail::from_char_buf(cb, a);
320 if (not a.indexmap().is_stride_order_C()) {
322 auto a_c_layout = h5_arr_t{};
323 h5_read(g, name, a_c_layout, slice);
324 detail::resize_or_check(a, a_c_layout.shape());
330 auto ds_info = h5::array_interface::get_dataset_info(g, name);
334 if constexpr (is_complex) {
335 if (!ds_info.has_complex_attribute) {
344 std::array<long, A::rank> shape{};
345 auto slab = h5::array_interface::hyperslab{};
346 if constexpr (slicing) {
351 for (
int u = 0; u < A::rank; ++u) shape[u] = ds_info.lengths[u];
355 detail::resize_or_check(a, shape);
358 auto ds_rank = ds_info.rank() - is_complex;
359 if (!slicing && ds_rank != A::rank)
360 NDA_RUNTIME_ERROR <<
"Error in nda::h5_read: Incompatible dataset and array ranks: " << ds_rank <<
" != " << A::rank;
363 auto v = detail::prepare_h5_array_view(a);
364 h5::array_interface::read(g, name, v, slab);
367 static_assert(!slicing,
"Error in nda::h5_read: Slicing not supported for arrays/views of generic types");
368 auto g2 = g.open_group(name);
371 std::array<long, A::rank> h5_shape;
372 h5_read(g2,
"shape", h5_shape);
373 detail::resize_or_check(a, h5_shape);
377 nda::for_each(a.shape(), [&](
auto... is) { h5_read(g2, make_name(is...), a(is...)); });
A generic multi-dimensional array.
Provides concepts for the nda library.
Provides various convenient aliases and helper functions for nda::basic_array and nda::basic_array_vi...
Provides a custom runtime error class and macros to assert conditions and throw exceptions.
Provides for_each functions for multi-dimensional arrays/views.
void h5_read(h5::group g, std::string const &name, A &a, std::tuple< IRs... > const &slice={})
Read into an nda::MemoryArray from an HDF5 file.
void h5_write(h5::group g, std::string const &name, A const &a, bool compress=true)
Write an nda::MemoryArray to a new dataset/subgroup into an HDF5 file.
auto hyperslab_and_shape_from_slice(std::tuple< IRs... > const &slice, std::vector< h5::hsize_t > const &ds_shape, bool is_complex)
Construct an h5::array_interface::hyperslab and the corresponding shape from a given slice,...
basic_array< ValueType, Rank, Layout, 'A', ContainerPolicy > array
Alias template of an nda::basic_array with an 'A' algebra.
__inline__ void for_each(std::array< Int, R > const &shape, F &&f)
Loop over all possible index values of a given shape and apply a function to them.
std::string to_string(std::array< T, R > const &a)
Get a string representation of a std::array.
constexpr bool is_complex_v
Constexpr variable that is true if type T is a std::complex type.
constexpr bool is_scalar_v
Constexpr variable that is true if type S is a scalar type, i.e. arithmetic or complex.
Includes the itertools header and provides some additional utilities.
Provides type traits for the nda library.