ESPResSo
Extensible Simulation Package for Research on Soft Matter Systems
Loading...
Searching...
No Matches
mask.hpp
Go to the documentation of this file.
1/*
2 * Copyright (C) 2019-2022 The ESPResSo project
3 *
4 * This file is part of ESPResSo.
5 *
6 * ESPResSo is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * ESPResSo is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#pragma once
21
22#include "utils/get.hpp"
23
24#include <concepts>
25#include <cstddef>
26#include <limits>
27#include <type_traits>
28#include <utility>
29
30namespace Utils {
31namespace detail {
32template <class T, std::size_t... I>
33auto mask_impl(std::unsigned_integral auto mask, T const &t,
34 std::index_sequence<I...>) {
35 return T{((mask & (1u << I)) ? get<I>(t) : std::tuple_element_t<I, T>{})...};
36}
37} // namespace detail
38
39/**
40 * @brief Pick elements of a tuple-like by a bit mask.
41 *
42 * E.g. every element of the input for which the corresponding
43 * bit is set in the mask is set is copied to the output unmodified,
44 * the elements that are not set are set to zero (default constructed
45 * instance of the type).
46 *
47 * Example:
48 * <tt>mask(0b1011u, {1, 2, 3, 4}) => {1, 2, 0, 4}</tt>
49 *
50 * @tparam T implements the tuple interface(get, tuple_size, ...)
51 * @param mask bit mask, if the i-th bit is set, the i-th element
52 * in @p t is copied to the output, otherwise it is set to zero.
53 * @param t input elements
54 * @return t partially zeroed out according to mask
55 */
56template <class T> T mask(std::unsigned_integral auto mask, T const &t) {
57 auto constexpr size_in_bits = std::numeric_limits<decltype(mask)>::digits;
58 static_assert(size_in_bits >= std::tuple_size_v<T>);
59 return detail::mask_impl(mask, t,
60 std::make_index_sequence<std::tuple_size_v<T>>{});
61}
62} // namespace Utils
cudaStream_t stream[1]
CUDA streams for parallel computing on CPU and GPU.
T mask(std::unsigned_integral auto mask, T const &t)
Pick elements of a tuple-like by a bit mask.
Definition mask.hpp:56