Raptor
A fast and space-efficient pre-filter
All Classes Namespaces Files Functions Variables Macros Pages Concepts
partition_config.hpp
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2006-2024 Knut Reinert & Freie Universität Berlin
2// SPDX-FileCopyrightText: 2016-2024 Knut Reinert & MPI für molekulare Genetik
3// SPDX-License-Identifier: BSD-3-Clause
4
10#pragma once
11
12#include <bit>
13#include <cstddef>
14#include <cstdint>
15
16namespace raptor
17{
18
20{
21 partition_config(partition_config const &) = default;
23 partition_config & operator=(partition_config const &) = default;
24 partition_config & operator=(partition_config &&) = default;
25 ~partition_config() = default;
26
27 explicit partition_config(size_t const parts) : partitions{parts}
28 {
29 size_t const suffixes = next_power_of_four(partitions);
30 size_t const suffixes_per_part = suffixes / partitions;
31 mask = suffixes - 1;
32 shift_value = std::countr_zero(suffixes_per_part);
33 }
34
35 size_t partitions{};
36 size_t mask{};
37 int shift_value{};
38
39 // The number of suffixes is a power of four.
40 // The number of partitions is a power of two.
41 // The number of suffixes is greater than or equal to the number of partitions.
42 // This means that the number of suffixes per partition is always a power of two.
43 // Therefore, we can do a right shift instead of the division in:
44 // (hash & mask) / suffixes_per_part == partition
45 // The compiler cannot optimize the division to a right shift because suffixes_per_part is a runtime variable.
46 constexpr size_t hash_partition(uint64_t const hash) const
47 {
48 return (hash & mask) >> shift_value;
49 }
50
51 static constexpr size_t next_power_of_four(size_t number)
52 {
53 if (number == 0ULL || number == 1ULL)
54 return 1ULL; // GCOVR_EXCL_LINE
55
56 --number;
57 int const highest_set_bit_pos = std::bit_width(number);
58 int const shift_amount = (highest_set_bit_pos + (highest_set_bit_pos & 1)) - 2;
59 // ( Next multiple of two ) 4 has two zeros
60 return 0b0100ULL << shift_amount;
61 }
62};
63
64} // namespace raptor
T bit_width(T... args)
T countr_zero(T... args)
Definition partition_config.hpp:20
Hide me