HighFive 3.0.0
HighFive - Header-only C++ HDF5 interface
Loading...
Searching...
No Matches
boost_ublas.hpp
Go to the documentation of this file.
1#pragma once
2
4#include "H5Exception.hpp"
5
6#include <boost/numeric/ublas/matrix.hpp>
7
8namespace HighFive {
9namespace details {
10
11template <typename T>
12struct inspector<boost::numeric::ublas::matrix<T>> {
13 using type = boost::numeric::ublas::matrix<T>;
14 using value_type = unqualified_t<T>;
15 using base_type = typename inspector<value_type>::base_type;
16 using hdf5_type = typename inspector<value_type>::hdf5_type;
17
18 static constexpr size_t ndim = 2;
19 static constexpr size_t min_ndim = ndim + inspector<value_type>::min_ndim;
20 static constexpr size_t max_ndim = ndim + inspector<value_type>::max_ndim;
21
22 static constexpr bool is_trivially_copyable = std::is_trivially_copyable<value_type>::value &&
23 inspector<value_type>::is_trivially_copyable;
24 static constexpr bool is_trivially_nestable = false;
25
26 static size_t getRank(const type& val) {
27 return ndim + inspector<value_type>::getRank(val(0, 0));
28 }
29
30 static std::vector<size_t> getDimensions(const type& val) {
31 std::vector<size_t> sizes{val.size1(), val.size2()};
32 auto s = inspector<value_type>::getDimensions(val(0, 0));
33 sizes.insert(sizes.end(), s.begin(), s.end());
34 return sizes;
35 }
36
37 static void prepare(type& val, const std::vector<size_t>& dims) {
38 if (dims.size() < ndim) {
39 std::ostringstream os;
40 os << "Impossible to pair DataSet with " << dims.size() << " dimensions into a " << ndim
41 << " boost::numeric::ublas::matrix";
42 throw DataSpaceException(os.str());
43 }
44 val.resize(dims[0], dims[1], false);
45 }
46
47 static hdf5_type* data(type& val) {
48 return inspector<value_type>::data(val(0, 0));
49 }
50
51 static const hdf5_type* data(const type& val) {
52 return inspector<value_type>::data(val(0, 0));
53 }
54
55 static void serialize(const type& val, const std::vector<size_t>& dims, hdf5_type* m) {
56 size_t size = val.size1() * val.size2();
57 auto subdims = std::vector<size_t>(dims.begin() + ndim, dims.end());
58 size_t subsize = compute_total_size(subdims);
59 for (size_t i = 0; i < size; ++i) {
60 inspector<value_type>::serialize(*(&val(0, 0) + i), subdims, m + i * subsize);
61 }
62 }
63
64 static void unserialize(const hdf5_type* vec_align,
65 const std::vector<size_t>& dims,
66 type& val) {
67 std::vector<size_t> next_dims(dims.begin() + ndim, dims.end());
68 size_t subsize = compute_total_size(next_dims);
69 size_t size = val.size1() * val.size2();
70 for (size_t i = 0; i < size; ++i) {
71 inspector<value_type>::unserialize(vec_align + i * subsize,
72 next_dims,
73 *(&val(0, 0) + i));
74 }
75 }
76};
77
78} // namespace details
79} // namespace HighFive
Definition assert_compatible_spaces.hpp:15
size_t compute_total_size(const std::vector< size_t > &dims)
Definition compute_total_size.hpp:10