HighFive 3.0.0
HighFive - Header-only C++ HDF5 interface
Loading...
Searching...
No Matches
squeeze.hpp
Go to the documentation of this file.
1/*
2 * Copyright (c), 2024, BlueBrain Project, EPFL
3 *
4 * Distributed under the Boost Software License, Version 1.0.
5 * (See accompanying file LICENSE_1_0.txt or copy at
6 * http://www.boost.org/LICENSE_1_0.txt)
7 *
8 */
9#pragma once
10
11#include <vector>
12#include "../H5Exception.hpp"
13
14namespace HighFive {
15namespace detail {
16
25inline std::vector<size_t> squeeze(const std::vector<size_t>& dims,
26 const std::vector<size_t>& axes) {
27 auto n_dims = dims.size();
28 auto mask = std::vector<bool>(n_dims, false);
29 for (size_t i = 0; i < axes.size(); ++i) {
30 if (axes[i] >= n_dims) {
31 throw Exception("Out of range: axes[" + std::to_string(i) +
32 "] == " + std::to_string(axes[i]) + " >= " + std::to_string(n_dims));
33 }
34
35 mask[axes[i]] = true;
36 }
37
38 auto squeezed_dims = std::vector<size_t>{};
39 for (size_t i = 0; i < n_dims; ++i) {
40 if (!mask[i]) {
41 squeezed_dims.push_back(dims[i]);
42 } else {
43 if (dims[i] != 1) {
44 throw Exception("Squeezing non-unity axis: axes[" + std::to_string(i) +
45 "] = " + std::to_string(axes[i]));
46 }
47 }
48 }
49
50 return squeezed_dims;
51}
52
53} // namespace detail
54} // namespace HighFive
Definition assert_compatible_spaces.hpp:15