12#include "vecmem/utils/type_traits.hpp"
45template <
typename T,
typename...
Ts,
typename P,
typename...
Ps>
46std::tuple<std::add_pointer_t<T>, std::add_pointer_t<Ts>...>
51 std::size_t size =
sizeof(
T) *
static_cast<std::size_t
>(
n);
75 beg =
static_cast<T *
>(std::align(
alignof(
T), size,
p,
q));
90 p =
static_cast<void *
>(
static_cast<char *
>(
p) + size);
100 if constexpr (
sizeof...(Ts) > 0) {
107 return std::tuple_cat(
111 std::make_tuple<std::add_pointer_t<T>>(std::move(
beg)),
118 std::forward<Ps>(
ps)...));
124 return std::make_tuple<std::add_pointer_t<T>>(std::move(
beg));
135template <
typename...
Ts,
typename...
Ps>
136std::tuple<vecmem::unique_alloc_ptr<char[]>, std::add_pointer_t<Ts>...>
144 static_assert(
sizeof...(Ts) ==
sizeof...(
Ps),
145 "Number of type parameters must be equal to the number of "
146 "value parameters.");
154 static_assert(std::conjunction_v<std::is_convertible<Ps, std::size_t>...>,
155 "All parameters must be of type std::size_t");
177 const std::size_t
bytes =
178 ((
static_cast<std::size_t
>(
ps) *
sizeof(
Ts)) + ...) +
179 sizeof...(Ts) * alignment;
211 return std::tuple_cat(
225 std::forward<Ps>(
ps)...));
std::tuple< vecmem::unique_alloc_ptr< char[]>, std::add_pointer_t< Ts >... > aligned_multiple_placement(vecmem::memory_resource &r, Ps &&... ps)
Allocation of aligned arrays of given types.
Definition aligned_multiple_placement.ipp:137
auto max(T &&t)
Find the maximum of a variadic number of elements, terminal function.
Definition type_traits.hpp:101
std::tuple< std::add_pointer_t< T >, std::add_pointer_t< Ts >... > aligned_multiple_placement_helper(void *p, std::size_t q, P n, Ps &&... ps)
Helper function for aligned_multiple_placement.
Definition aligned_multiple_placement.ipp:47
Main namespace for the vecmem classes/functions.
Definition atomic_ref.hpp:16
std::vector< T, vecmem::polymorphic_allocator< T > > vector
Alias type for vectors with our polymorphic allocator.
Definition vector.hpp:35
std::unique_ptr< T, details::unique_alloc_deleter< T > > unique_alloc_ptr
A unique pointer type for trivial types.
Definition unique_ptr.hpp:69