vecmem 1.14.0
Loading...
Searching...
No Matches
integer_math.hpp
1/*
2 * VecMem project, part of the ACTS project (R&D line)
3 *
4 * (c) 2023-2024 CERN for the benefit of the ACTS project
5 *
6 * Mozilla Public License Version 2.0
7 */
8#pragma once
9
10// System include(s).
11#include <cassert>
12#include <climits>
13#include <cstddef>
14#include <limits>
15#ifdef VECMEM_HAVE_LZCNT_U64
16#include <intrin.h>
17#endif
18
19namespace vecmem::details {
20
26inline bool is_power_of_2(std::size_t x) {
27
28 return ((x & (x - 1)) == static_cast<std::size_t>(0));
29}
30
36inline std::size_t clzl(std::size_t i) {
37
38#if defined(VECMEM_HAVE_LZCNT_U64)
39 return static_cast<std::size_t>(_lzcnt_u64(i));
40#elif defined(VECMEM_HAVE_BUILTIN_CLZL)
41 return static_cast<std::size_t>(__builtin_clzl(i));
42#else
43 std::size_t b;
44 for (b = 0;
46 << (std::numeric_limits<std::size_t>::digits - 1UL)));
47 ++b)
48 ;
49 return b;
50#endif
51}
52
58inline std::size_t log2(std::size_t x) {
59
60 static constexpr std::size_t num_bits = CHAR_BIT * sizeof(std::size_t);
61 static constexpr std::size_t num_bits_minus_one = num_bits - 1;
62 return num_bits_minus_one - clzl(x);
63}
64
70inline std::size_t log2_ri(std::size_t x) {
71
72 // Compute the log.
73 std::size_t result = log2(x);
74
75 // Round up to the nearest log.
76 if (!is_power_of_2(x)) {
77 ++result;
78 }
79
80 // Return the result.
81 return result;
82}
83
88inline std::size_t round_up(std::size_t size) {
89 static constexpr std::size_t SIZE_T_BITS = CHAR_BIT * sizeof(std::size_t);
90 assert((static_cast<std::size_t>(1UL) << (SIZE_T_BITS - 1)) >= size);
91 for (std::size_t i = 0; i < SIZE_T_BITS; ++i) {
92 if ((static_cast<std::size_t>(1UL) << i) >= size) {
93 return i;
94 }
95 }
96
97 return 0;
98}
99
100} // namespace vecmem::details
Namespace for types that should not be used directly by clients.
Definition array.hpp:23
std::size_t log2_ri(std::size_t x)
Compute the base-2 logarithm of a number, rounding up to the nearest log.
Definition integer_math.hpp:70
std::size_t round_up(std::size_t size)
Rounds a size up to the nearest power of two, and returns the power (not the size itself).
Definition integer_math.hpp:88
std::size_t clzl(std::size_t i)
Count the leading zeroes in a number.
Definition integer_math.hpp:36
bool is_power_of_2(std::size_t x)
Check if a number is a power of 2.
Definition integer_math.hpp:26
std::size_t log2(std::size_t x)
Compute the base-2 logarithm of a number.
Definition integer_math.hpp:58
std::vector< T, vecmem::polymorphic_allocator< T > > vector
Alias type for vectors with our polymorphic allocator.
Definition vector.hpp:35