vecmem 1.14.0
Loading...
Searching...
No Matches
proxy_traits.hpp
1/* VecMem project, part of the ACTS project (R&D line)
2 *
3 * (c) 2024-2025 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/schema.hpp"
13#include "vecmem/utils/tuple.hpp"
14#if __cplusplus >= 201700L
15#include "vecmem/containers/jagged_vector.hpp"
16#include "vecmem/containers/vector.hpp"
17#endif // __cplusplus >= 201700L
18
19// System include(s).
20#include <tuple>
21#include <type_traits>
22
23namespace vecmem {
24namespace edm {
25namespace details {
26
28enum class proxy_domain {
30 host,
32 device
33};
34
36enum class proxy_access {
38 non_constant,
40 constant
41};
42
44enum class proxy_type {
46 reference,
48 standalone
49};
50
53
55template <typename VTYPE, proxy_domain PDOMAIN, proxy_access PACCESS,
56 proxy_type PTYPE>
58
60template <typename VTYPE, proxy_domain PDOMAIN>
61struct proxy_var_type<type::scalar<VTYPE>, PDOMAIN, proxy_access::constant,
62 proxy_type::reference> {
63
65 using type = std::add_lvalue_reference_t<std::add_const_t<VTYPE>>;
70
72 template <typename ITYPE>
73 VECMEM_HOST_AND_DEVICE static type make(ITYPE, return_type variable) {
74 return variable;
75 }
76};
77
79template <typename VTYPE, proxy_domain PDOMAIN>
80struct proxy_var_type<type::scalar<VTYPE>, PDOMAIN, proxy_access::non_constant,
81 proxy_type::reference> {
82
84 using type = std::add_lvalue_reference_t<VTYPE>;
89 std::add_lvalue_reference_t<std::add_const_t<VTYPE>>;
90
92 template <typename ITYPE>
93 VECMEM_HOST_AND_DEVICE static type make(ITYPE, return_type variable) {
94 return variable;
95 }
96};
97
99template <typename VTYPE, proxy_domain PDOMAIN, proxy_access PACCESS>
100struct proxy_var_type<type::scalar<VTYPE>, PDOMAIN, PACCESS,
101 proxy_type::standalone> {
102
104 using type = std::remove_cv_t<VTYPE>;
106 using return_type = std::add_lvalue_reference_t<type>;
109 std::add_lvalue_reference_t<std::add_const_t<type>>;
110
112 template <typename ITYPE>
113 VECMEM_HOST_AND_DEVICE static type make(ITYPE, const_return_type variable) {
114 return variable;
115 }
116};
117
119template <typename VTYPE, proxy_domain PDOMAIN>
120struct proxy_var_type<type::vector<VTYPE>, PDOMAIN, proxy_access::constant,
121 proxy_type::reference> {
122
124 using type = std::add_lvalue_reference_t<std::add_const_t<VTYPE>>;
129
131 template <typename ITYPE, typename VECTYPE>
132 VECMEM_HOST_AND_DEVICE static type make(ITYPE i, const VECTYPE& vec) {
133
134 return vec.at(i);
135 }
136};
137
139template <typename VTYPE, proxy_domain PDOMAIN>
140struct proxy_var_type<type::vector<VTYPE>, PDOMAIN, proxy_access::non_constant,
141 proxy_type::reference> {
142
144 using type = std::add_lvalue_reference_t<VTYPE>;
149 std::add_lvalue_reference_t<std::add_const_t<VTYPE>>;
150
152 template <typename ITYPE, typename VECTYPE>
153 VECMEM_HOST_AND_DEVICE static type make(ITYPE i, VECTYPE& vec) {
154
155 return vec.at(i);
156 }
157};
158
160template <typename VTYPE, proxy_domain PDOMAIN, proxy_access PACCESS>
162 proxy_type::standalone> {
163
165 using type = std::remove_cv_t<VTYPE>;
167 using return_type = std::add_lvalue_reference_t<type>;
170 std::add_lvalue_reference_t<std::add_const_t<type>>;
171
173 template <typename ITYPE, typename VECTYPE>
174 VECMEM_HOST_AND_DEVICE static type make(ITYPE i, const VECTYPE& vec) {
175
176 return vec.at(i);
177 }
178};
179
181template <typename VTYPE>
182struct proxy_var_type<type::jagged_vector<VTYPE>, proxy_domain::device,
183 proxy_access::constant, proxy_type::reference> {
184
189 using return_type = std::add_lvalue_reference_t<std::add_const_t<type>>;
193
195 VECMEM_HOST_AND_DEVICE
196 static type make(
197 typename jagged_device_vector<std::add_const_t<VTYPE>>::size_type i,
198 const jagged_device_vector<std::add_const_t<VTYPE>>& vec) {
199
200 return vec.at(i);
201 }
202};
203
205template <typename VTYPE>
206struct proxy_var_type<type::jagged_vector<VTYPE>, proxy_domain::device,
207 proxy_access::non_constant, proxy_type::reference> {
208
213 using return_type = std::add_lvalue_reference_t<type>;
216 using const_return_type = std::add_lvalue_reference_t<
217 std::add_const_t<device_vector<std::add_const_t<VTYPE>>>>;
218
220 VECMEM_HOST_AND_DEVICE
223
224 return vec.at(i);
225 }
226};
227
228#if __cplusplus >= 201700L
229
231template <typename VTYPE>
232struct proxy_var_type<type::jagged_vector<VTYPE>, proxy_domain::host,
233 proxy_access::constant, proxy_type::reference> {
234
236 using type = std::add_lvalue_reference_t<std::add_const_t<vector<VTYPE>>>;
241
243 VECMEM_HOST
245 const jagged_vector<VTYPE>& vec) {
246
247 return vec.at(i);
248 }
249};
250
252template <typename VTYPE>
253struct proxy_var_type<type::jagged_vector<VTYPE>, proxy_domain::host,
254 proxy_access::non_constant, proxy_type::reference> {
255
258 using type = std::add_lvalue_reference_t<vector<VTYPE>>;
263 std::add_lvalue_reference_t<std::add_const_t<vector<VTYPE>>>;
264
266 VECMEM_HOST
269
270 return vec.at(i);
271 }
272};
273
275template <typename VTYPE, proxy_access PACCESS>
276struct proxy_var_type<type::jagged_vector<VTYPE>, proxy_domain::host, PACCESS,
277 proxy_type::standalone> {
278
282 using return_type = std::add_lvalue_reference_t<type>;
285 std::add_lvalue_reference_t<std::add_const_t<type>>;
286
288 VECMEM_HOST
290 const jagged_vector<VTYPE>& vec) {
291
292 return vec.at(i);
293 }
294};
295
296#endif // __cplusplus >= 201700L
297
299template <std::size_t INDEX, proxy_domain PDOMAIN, proxy_access PACCESS,
300 proxy_type PTYPE, typename... VARTYPES>
315
317
320
322template <typename SCHEMA, proxy_domain PDOMAIN, proxy_access PACCESS,
323 proxy_type PTYPE>
325
327template <typename VARTYPE, proxy_domain PDOMAIN>
328struct proxy_data_creator<schema<VARTYPE>, PDOMAIN, proxy_access::constant,
329 proxy_type::reference> {
330
332 template <typename, proxy_domain, proxy_access, proxy_type>
333 friend struct proxy_data_creator;
334
337 tuple<typename proxy_var_type<VARTYPE, PDOMAIN, proxy_access::constant,
338 proxy_type::reference>::type>;
339
341 template <typename ITYPE, typename CONTAINER>
342 VECMEM_HOST_AND_DEVICE static proxy_tuple_type make(ITYPE i,
343 const CONTAINER& c) {
344 return make_impl<0>(i, c);
345 }
346
347private:
348 template <std::size_t INDEX, typename ITYPE, typename CONTAINER>
349 VECMEM_HOST_AND_DEVICE static proxy_tuple_type make_impl(
350 ITYPE i, const CONTAINER& c) {
351
352 return {proxy_var_type<
353 VARTYPE, PDOMAIN, proxy_access::constant,
354 proxy_type::reference>::make(i, c.template get<INDEX>())};
355 }
356};
357
359template <typename VARTYPE, proxy_domain PDOMAIN>
360struct proxy_data_creator<schema<VARTYPE>, PDOMAIN, proxy_access::non_constant,
361 proxy_type::reference> {
362
364 template <typename, proxy_domain, proxy_access, proxy_type>
365 friend struct proxy_data_creator;
366
369 typename proxy_var_type<VARTYPE, PDOMAIN, proxy_access::non_constant,
370 proxy_type::reference>::type>;
371
373 template <typename ITYPE, typename CONTAINER>
374 VECMEM_HOST_AND_DEVICE static proxy_tuple_type make(ITYPE i, CONTAINER& c) {
375 return make_impl<0>(i, c);
376 }
377
378private:
379 template <std::size_t INDEX, typename ITYPE, typename CONTAINER>
380 VECMEM_HOST_AND_DEVICE static proxy_tuple_type make_impl(ITYPE i,
381 CONTAINER& c) {
382
383 return {proxy_var_type<
384 VARTYPE, PDOMAIN, proxy_access::non_constant,
385 proxy_type::reference>::make(i, c.template get<INDEX>())};
386 }
387};
388
390template <typename VARTYPE, typename... VARTYPES, proxy_domain PDOMAIN>
392 proxy_access::constant, proxy_type::reference> {
393
395 template <typename, proxy_domain, proxy_access, proxy_type>
396 friend struct proxy_data_creator;
397
400 tuple<typename proxy_var_type<VARTYPE, PDOMAIN, proxy_access::constant,
401 proxy_type::reference>::type,
402 typename proxy_var_type<VARTYPES, PDOMAIN, proxy_access::constant,
403 proxy_type::reference>::type...>;
404
406 template <typename ITYPE, typename CONTAINER>
407 VECMEM_HOST_AND_DEVICE static proxy_tuple_type make(ITYPE i,
408 const CONTAINER& c) {
409 return make_impl<0>(i, c);
410 }
411
412private:
413 template <std::size_t INDEX, typename ITYPE, typename CONTAINER>
414 VECMEM_HOST_AND_DEVICE static proxy_tuple_type make_impl(
415 ITYPE i, const CONTAINER& c) {
416
417 return proxy_tuple_type(
419 VARTYPE, PDOMAIN, proxy_access::constant,
420 proxy_type::reference>::make(i, c.template get<INDEX>()),
422 schema<VARTYPES...>, PDOMAIN, proxy_access::constant,
423 proxy_type::reference>::template make_impl<INDEX + 1>(i, c));
424 }
425};
426
428template <typename VARTYPE, typename... VARTYPES, proxy_domain PDOMAIN>
430 proxy_access::non_constant, proxy_type::reference> {
431
433 template <typename, proxy_domain, proxy_access, proxy_type>
434 friend struct proxy_data_creator;
435
438 typename proxy_var_type<VARTYPE, PDOMAIN, proxy_access::non_constant,
439 proxy_type::reference>::type,
440 typename proxy_var_type<VARTYPES, PDOMAIN, proxy_access::non_constant,
441 proxy_type::reference>::type...>;
442
444 template <typename ITYPE, typename CONTAINER>
445 VECMEM_HOST_AND_DEVICE static proxy_tuple_type make(ITYPE i, CONTAINER& c) {
446 return make_impl<0>(i, c);
447 }
448
449private:
450 template <std::size_t INDEX, typename ITYPE, typename CONTAINER>
451 VECMEM_HOST_AND_DEVICE static proxy_tuple_type make_impl(ITYPE i,
452 CONTAINER& c) {
453
454 return proxy_tuple_type(
456 VARTYPE, PDOMAIN, proxy_access::non_constant,
457 proxy_type::reference>::make(i, c.template get<INDEX>()),
459 schema<VARTYPES...>, PDOMAIN, proxy_access::non_constant,
460 proxy_type::reference>::template make_impl<INDEX + 1>(i, c));
461 }
462};
463
465
466} // namespace details
467} // namespace edm
468} // namespace vecmem
A view for jagged vectors.
Definition jagged_device_vector.hpp:47
std::size_t size_type
Size type for the array.
Definition jagged_device_vector.hpp:56
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
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
tuple< typename proxy_var_type< VARTYPE, PDOMAIN, proxy_access::constant, proxy_type::reference >::type, typename proxy_var_type< VARTYPES, PDOMAIN, proxy_access::constant, proxy_type::reference >::type... > proxy_tuple_type
Proxy tuple type created by the helper.
Definition proxy_traits.hpp:403
static VECMEM_HOST_AND_DEVICE proxy_tuple_type make(ITYPE i, const CONTAINER &c)
Construct the tuple used by the proxy.
Definition proxy_traits.hpp:407
tuple< typename proxy_var_type< VARTYPE, PDOMAIN, proxy_access::non_constant, proxy_type::reference >::type, typename proxy_var_type< VARTYPES, PDOMAIN, proxy_access::non_constant, proxy_type::reference >::type... > proxy_tuple_type
Proxy tuple type created by the helper.
Definition proxy_traits.hpp:441
static VECMEM_HOST_AND_DEVICE proxy_tuple_type make(ITYPE i, CONTAINER &c)
Construct the tuple used by the proxy.
Definition proxy_traits.hpp:445
static VECMEM_HOST_AND_DEVICE proxy_tuple_type make(ITYPE i, CONTAINER &c)
Construct the tuple used by the proxy.
Definition proxy_traits.hpp:374
tuple< typename proxy_var_type< VARTYPE, PDOMAIN, proxy_access::non_constant, proxy_type::reference >::type > proxy_tuple_type
Proxy tuple type created by the helper.
Definition proxy_traits.hpp:370
static VECMEM_HOST_AND_DEVICE proxy_tuple_type make(ITYPE i, const CONTAINER &c)
Construct the tuple used by the proxy.
Definition proxy_traits.hpp:342
tuple< typename proxy_var_type< VARTYPE, PDOMAIN, proxy_access::constant, proxy_type::reference >::type > proxy_tuple_type
Proxy tuple type created by the helper.
Definition proxy_traits.hpp:338
Technical base class for the proxy_data_creator traits.
Definition proxy_traits.hpp:324
vector< VTYPE > type
Jagged vector elements are kept by constant reference in the proxy.
Definition proxy_traits.hpp:280
std::add_lvalue_reference_t< std::add_const_t< type > > const_return_type
They are returned as a const reference on const access.
Definition proxy_traits.hpp:285
static VECMEM_HOST type make(typename jagged_vector< VTYPE >::size_type i, const jagged_vector< VTYPE > &vec)
Helper function constructing a vector proxy variable.
Definition proxy_traits.hpp:289
std::add_lvalue_reference_t< type > return_type
They are returned as a const reference even on non-const access.
Definition proxy_traits.hpp:282
std::add_lvalue_reference_t< std::add_const_t< device_vector< std::add_const_t< VTYPE > > > > const_return_type
They are returned as const references to the non-const device vector in const access.
Definition proxy_traits.hpp:217
std::add_lvalue_reference_t< type > return_type
They are returned as non-const lvalue references to the non-const device vector in non-const access.
Definition proxy_traits.hpp:213
device_vector< VTYPE > type
Jagged vector elements are kept by non-const device vectors in the proxy.
Definition proxy_traits.hpp:210
static VECMEM_HOST_AND_DEVICE type make(typename jagged_device_vector< VTYPE >::size_type i, jagged_device_vector< VTYPE > &vec)
Helper function constructing a vector proxy variable.
Definition proxy_traits.hpp:221
std::add_lvalue_reference_t< std::add_const_t< type > > return_type
They are returned as a const reference to the device vector even in non-const access.
Definition proxy_traits.hpp:189
static VECMEM_HOST_AND_DEVICE type make(typename jagged_device_vector< std::add_const_t< VTYPE > >::size_type i, const jagged_device_vector< std::add_const_t< VTYPE > > &vec)
Helper function constructing a vector proxy variable.
Definition proxy_traits.hpp:196
return_type const_return_type
They are returned as a const reference to the device vector on const access.
Definition proxy_traits.hpp:192
device_vector< std::add_const_t< VTYPE > > type
Jagged vector elements are kept by constant device vectors in the proxy.
Definition proxy_traits.hpp:186
std::add_lvalue_reference_t< std::add_const_t< vector< VTYPE > > > const_return_type
They are returned as a const reference on const access.
Definition proxy_traits.hpp:263
static VECMEM_HOST type make(typename jagged_vector< VTYPE >::size_type i, jagged_vector< VTYPE > &vec)
Helper function constructing a vector proxy variable.
Definition proxy_traits.hpp:267
type return_type
They are returned as a non-const lvalue reference on non-const access.
Definition proxy_traits.hpp:260
std::add_lvalue_reference_t< vector< VTYPE > > type
Jagged vector elements are kept by non-const lvalue reference in the proxy.
Definition proxy_traits.hpp:258
std::add_lvalue_reference_t< std::add_const_t< vector< VTYPE > > > type
Jagged vector elements are kept by constant reference in the proxy.
Definition proxy_traits.hpp:236
static VECMEM_HOST type make(typename jagged_vector< VTYPE >::size_type i, const jagged_vector< VTYPE > &vec)
Helper function constructing a vector proxy variable.
Definition proxy_traits.hpp:244
type return_type
They are returned as a const reference even on non-const access.
Definition proxy_traits.hpp:238
type const_return_type
They are returned as a const reference on const access.
Definition proxy_traits.hpp:240
type return_type
It is returned as a non-const lvalue reference on non-const access.
Definition proxy_traits.hpp:86
static VECMEM_HOST_AND_DEVICE type make(ITYPE, return_type variable)
Helper function constructing a scalar proxy variable.
Definition proxy_traits.hpp:93
std::add_lvalue_reference_t< std::add_const_t< VTYPE > > const_return_type
It is returned as a const reference on const access.
Definition proxy_traits.hpp:89
std::add_lvalue_reference_t< VTYPE > type
The scalar is kept by lvalue reference in the proxy.
Definition proxy_traits.hpp:84
return_type const_return_type
It is returned as a const reference on const access.
Definition proxy_traits.hpp:69
std::add_lvalue_reference_t< std::add_const_t< VTYPE > > type
The scalar is kept by constant lvalue reference in the proxy.
Definition proxy_traits.hpp:65
static VECMEM_HOST_AND_DEVICE type make(ITYPE, return_type variable)
Helper function constructing a scalar proxy variable.
Definition proxy_traits.hpp:73
type return_type
It is returned as a const reference even on non-const access.
Definition proxy_traits.hpp:67
std::add_lvalue_reference_t< type > return_type
It is returned as a const reference even on non-const access.
Definition proxy_traits.hpp:106
static VECMEM_HOST_AND_DEVICE type make(ITYPE, const_return_type variable)
Helper function constructing a scalar proxy variable.
Definition proxy_traits.hpp:113
std::add_lvalue_reference_t< std::add_const_t< type > > const_return_type
It is returned as a const reference on const access.
Definition proxy_traits.hpp:109
std::remove_cv_t< VTYPE > type
The scalar is kept by value in the proxy.
Definition proxy_traits.hpp:104
std::add_lvalue_reference_t< std::add_const_t< type > > const_return_type
It is returned as a const reference on const access.
Definition proxy_traits.hpp:170
std::remove_cv_t< VTYPE > type
The scalar is kept by value in the proxy.
Definition proxy_traits.hpp:165
std::add_lvalue_reference_t< type > return_type
It is returned as a const reference even on non-const access.
Definition proxy_traits.hpp:167
static VECMEM_HOST_AND_DEVICE type make(ITYPE i, const VECTYPE &vec)
Helper function constructing a vector proxy variable.
Definition proxy_traits.hpp:174
std::add_lvalue_reference_t< VTYPE > type
Vector elements are kept by lvalue reference in the proxy.
Definition proxy_traits.hpp:144
type return_type
They are returned as a non-const lvalue reference on non-const access.
Definition proxy_traits.hpp:146
static VECMEM_HOST_AND_DEVICE type make(ITYPE i, VECTYPE &vec)
Helper function constructing a vector proxy variable.
Definition proxy_traits.hpp:153
std::add_lvalue_reference_t< std::add_const_t< VTYPE > > const_return_type
They are returned as a const reference on const access.
Definition proxy_traits.hpp:149
std::add_lvalue_reference_t< std::add_const_t< VTYPE > > type
Vector elements are kept by value in the proxy.
Definition proxy_traits.hpp:124
return_type const_return_type
They are returned as a const reference on const access.
Definition proxy_traits.hpp:128
type return_type
They are returned as a const reference even on non-const access.
Definition proxy_traits.hpp:126
static VECMEM_HOST_AND_DEVICE type make(ITYPE i, const VECTYPE &vec)
Helper function constructing a vector proxy variable.
Definition proxy_traits.hpp:132
Proxy types for one element of a type pack.
Definition proxy_traits.hpp:301
typename proxy_var_type< tuple_element_t< INDEX, tuple< VARTYPES... > >, PDOMAIN, PACCESS, PTYPE >::return_type return_type
Return type on non-const access to the proxy.
Definition proxy_traits.hpp:309
typename proxy_var_type< tuple_element_t< INDEX, tuple< VARTYPES... > >, PDOMAIN, PACCESS, PTYPE >::const_return_type const_return_type
Return type on const access to the proxy.
Definition proxy_traits.hpp:313
typename proxy_var_type< tuple_element_t< INDEX, tuple< VARTYPES... > >, PDOMAIN, PACCESS, PTYPE >::type type
Type of the variable held by the proxy.
Definition proxy_traits.hpp:305
Technical base class for the proxy_var_type traits.
Definition proxy_traits.hpp:57
Meta type describing the "schema" of an SoA container.
Definition schema.hpp:46
Default tuple type.
Definition tuple.hpp:24