10#include "vecmem/containers/device_vector.hpp"
11#include "vecmem/containers/jagged_device_vector.hpp"
12#include "vecmem/edm/details/types.hpp"
13#include "vecmem/edm/schema.hpp"
14#include "vecmem/utils/tuple.hpp"
27template <
typename TYPE>
30template <
typename TYPE>
32 using type = std::add_pointer_t<TYPE>;
33 using return_type = std::add_lvalue_reference_t<TYPE>;
34 using const_return_type =
35 std::add_lvalue_reference_t<std::add_const_t<TYPE>>;
38template <
typename TYPE>
41 using return_type = std::add_lvalue_reference_t<type>;
42 using const_return_type =
43 std::add_lvalue_reference_t<std::add_const_t<type>>;
46template <
typename TYPE>
49 using return_type = std::add_lvalue_reference_t<type>;
50 using const_return_type =
51 std::add_lvalue_reference_t<std::add_const_t<type>>;
69template <
typename TYPE>
71 VECMEM_HOST_AND_DEVICE
77 VECMEM_HOST_AND_DEVICE
85template <
typename TYPE>
87 VECMEM_HOST_AND_DEVICE
93 VECMEM_HOST_AND_DEVICE
104template <
typename TYPE>
105VECMEM_HOST_AND_DEVICE
constexpr bool device_capacity_matches(
111template <
typename TYPE>
112VECMEM_HOST_AND_DEVICE
constexpr bool device_capacity_matches(
113 const size_type capacity,
116 return (capacity ==
variable.capacity());
120template <
typename TYPE>
121VECMEM_HOST_AND_DEVICE
constexpr bool device_capacity_matches(
122 const size_type capacity,
123 const typename device_type<type::jagged_vector<TYPE>>::type&
variable) {
125 return (capacity ==
variable.capacity());
130VECMEM_HOST_AND_DEVICE
constexpr bool device_capacities_match(
131 const size_type,
const tuple<
typename device_type<VARTYPES>::type...>&,
132 std::index_sequence<>) {
143VECMEM_HOST_AND_DEVICE
constexpr bool device_capacities_match(
144 const size_type capacity,
145 const tuple<
typename device_type<VARTYPES>::type...>& variables,
146 std::index_sequence<INDEX, INDICES...>) {
149 return device_capacity_matches<
153 capacity, variables, std::index_sequence<INDICES...>{});
157template <
bool HAS_JAGGED_VECTOR>
164 VECMEM_HOST_AND_DEVICE
static constexpr size_pointer
get(
168 VECMEM_HOST_AND_DEVICE
static constexpr const_size_pointer
get(
181 assert((
v.ptr() ==
nullptr) || (
v.size() ==
sizeof(size_type)));
183 return reinterpret_cast<size_pointer
>(
v.ptr());
185 VECMEM_HOST_AND_DEVICE
static const_size_pointer
get(
189 assert((
v.ptr() ==
nullptr) || (
v.size() ==
sizeof(size_type)));
191 return reinterpret_cast<const_size_pointer
>(
v.ptr());
Class holding data about a 1 dimensional vector/array.
Definition vector_view.hpp:38
Main namespace for the vecmem classes/functions.
Definition atomic_ref.hpp:16
vector< vector< T > > jagged_vector
Alias type for jagged vectors with our polymorphic allocator.
Definition jagged_vector.hpp:30
VECMEM_HOST_AND_DEVICE constexpr const auto & get(const tuple< Ts... > &t) noexcept
Get a constant element out of a tuple.
Definition tuple.ipp:58
std::vector< T, vecmem::polymorphic_allocator< T > > vector
Alias type for vectors with our polymorphic allocator.
Definition vector.hpp:35
typename tuple_element< I, T >::type tuple_element_t
Convenience accessor for the I-th element of a tuple.
Definition tuple.hpp:211
Definition device_traits.hpp:70
Helper trait for setting the m_size variable of a device object.
Definition device_traits.hpp:158
Definition device_traits.hpp:55
Definition device_traits.hpp:28
1D vector variable
Definition schema.hpp:26
Default tuple type.
Definition tuple.hpp:24