vecmem 1.14.0
Loading...
Searching...
No Matches
device_traits.hpp
1/* VecMem project, part of the ACTS project (R&D line)
2 *
3 * (c) 2023 CERN for the benefit of the ACTS project
4 *
5 * Mozilla Public License Version 2.0
6 */
7#pragma once
8
9// Local include(s).
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"
15
16// System include(s).
17#include <type_traits>
18#include <utility>
19
20namespace vecmem {
21namespace edm {
22namespace details {
23
26
27template <typename TYPE>
29
30template <typename TYPE>
31struct device_type<type::scalar<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>>;
36}; // struct device_type
37
38template <typename TYPE>
39struct device_type<type::vector<TYPE>> {
40 using type = device_vector<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>>;
44}; // struct device_type
45
46template <typename TYPE>
47struct device_type<type::jagged_vector<TYPE>> {
48 using type = jagged_device_vector<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>>;
52}; // struct device_type
53
54template <std::size_t INDEX, typename... VARTYPES>
56 using type =
57 typename device_type<tuple_element_t<INDEX, tuple<VARTYPES...>>>::type;
58 using return_type = typename device_type<
59 tuple_element_t<INDEX, tuple<VARTYPES...>>>::return_type;
60 using const_return_type = typename device_type<
61 tuple_element_t<INDEX, tuple<VARTYPES...>>>::const_return_type;
62}; // struct device_type_at
63
65
68
69template <typename TYPE>
70struct device_get {
71 VECMEM_HOST_AND_DEVICE
72 static constexpr typename device_type<TYPE>::return_type get(
74
75 return variable;
76 }
77 VECMEM_HOST_AND_DEVICE
78 static constexpr typename device_type<TYPE>::const_return_type get(
79 const typename device_type<TYPE>::type& variable) {
80
81 return variable;
82 }
83}; // struct device_get
84
85template <typename TYPE>
86struct device_get<type::scalar<TYPE>> {
87 VECMEM_HOST_AND_DEVICE
88 static constexpr typename device_type<type::scalar<TYPE>>::return_type get(
89 typename device_type<type::scalar<TYPE>>::type& variable) {
90
91 return *variable;
92 }
93 VECMEM_HOST_AND_DEVICE
94 static constexpr typename device_type<type::scalar<TYPE>>::const_return_type
95 get(const typename device_type<type::scalar<TYPE>>::type& variable) {
96
97 return *variable;
98 }
99}; // struct device_get
100
102
104template <typename TYPE>
105VECMEM_HOST_AND_DEVICE constexpr bool device_capacity_matches(
106 const size_type, const typename device_type<type::scalar<TYPE>>::type&) {
107 return true;
108}
109
111template <typename TYPE>
112VECMEM_HOST_AND_DEVICE constexpr bool device_capacity_matches(
113 const size_type capacity,
114 const typename device_type<type::vector<TYPE>>::type& variable) {
115
116 return (capacity == variable.capacity());
117}
118
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) {
124
125 return (capacity == variable.capacity());
126}
127
129template <typename... VARTYPES>
130VECMEM_HOST_AND_DEVICE constexpr bool device_capacities_match(
131 const size_type, const tuple<typename device_type<VARTYPES>::type...>&,
132 std::index_sequence<>) {
133
134 return true;
135}
136
142template <typename... VARTYPES, std::size_t INDEX, std::size_t... INDICES>
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...>) {
147
148 // Check the capacities recursively.
149 return device_capacity_matches<
150 typename tuple_element_t<INDEX, tuple<VARTYPES...>>::type>(
151 capacity, get<INDEX>(variables)) &&
153 capacity, variables, std::index_sequence<INDICES...>{});
154}
155
157template <bool HAS_JAGGED_VECTOR>
159
162template <>
164 VECMEM_HOST_AND_DEVICE static constexpr size_pointer get(
165 const memory_view&) {
166 return nullptr;
167 }
168 VECMEM_HOST_AND_DEVICE static constexpr const_size_pointer get(
169 const const_memory_view&) {
170 return nullptr;
171 }
172};
173
176template <>
178 VECMEM_HOST_AND_DEVICE static size_pointer get(const memory_view& v) {
179
180 // A sanity check.
181 assert((v.ptr() == nullptr) || (v.size() == sizeof(size_type)));
182 // Do a forceful conversion.
183 return reinterpret_cast<size_pointer>(v.ptr());
184 }
185 VECMEM_HOST_AND_DEVICE static const_size_pointer get(
186 const const_memory_view& v) {
187
188 // A sanity check.
189 assert((v.ptr() == nullptr) || (v.size() == sizeof(size_type)));
190 // Do a forceful conversion.
191 return reinterpret_cast<const_size_pointer>(v.ptr());
192 }
193};
194
195} // namespace details
196} // namespace edm
197} // namespace vecmem
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