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"
28enum class proxy_domain {
36enum class proxy_access {
44enum class proxy_type {
60template <
typename VTYPE, proxy_domain PDOMAIN>
62 proxy_type::reference> {
65 using type = std::add_lvalue_reference_t<std::add_const_t<VTYPE>>;
72 template <
typename ITYPE>
79template <
typename VTYPE, proxy_domain PDOMAIN>
81 proxy_type::reference> {
84 using type = std::add_lvalue_reference_t<VTYPE>;
89 std::add_lvalue_reference_t<std::add_const_t<VTYPE>>;
92 template <
typename ITYPE>
99template <
typename VTYPE, proxy_domain PDOMAIN, proxy_access PACCESS>
101 proxy_type::standalone> {
104 using type = std::remove_cv_t<VTYPE>;
109 std::add_lvalue_reference_t<std::add_const_t<type>>;
112 template <
typename ITYPE>
119template <
typename VTYPE, proxy_domain PDOMAIN>
121 proxy_type::reference> {
124 using type = std::add_lvalue_reference_t<std::add_const_t<VTYPE>>;
131 template <
typename ITYPE,
typename VECTYPE>
139template <
typename VTYPE, proxy_domain PDOMAIN>
141 proxy_type::reference> {
144 using type = std::add_lvalue_reference_t<VTYPE>;
149 std::add_lvalue_reference_t<std::add_const_t<VTYPE>>;
152 template <
typename ITYPE,
typename VECTYPE>
160template <
typename VTYPE, proxy_domain PDOMAIN, proxy_access PACCESS>
162 proxy_type::standalone> {
165 using type = std::remove_cv_t<VTYPE>;
170 std::add_lvalue_reference_t<std::add_const_t<type>>;
173 template <
typename ITYPE,
typename VECTYPE>
181template <
typename VTYPE>
183 proxy_access::constant, proxy_type::reference> {
189 using return_type = std::add_lvalue_reference_t<std::add_const_t<type>>;
195 VECMEM_HOST_AND_DEVICE
205template <
typename VTYPE>
207 proxy_access::non_constant, proxy_type::reference> {
217 std::add_const_t<device_vector<std::add_const_t<VTYPE>>>>;
220 VECMEM_HOST_AND_DEVICE
228#if __cplusplus >= 201700L
231template <
typename VTYPE>
233 proxy_access::constant, proxy_type::reference> {
236 using type = std::add_lvalue_reference_t<std::add_const_t<vector<VTYPE>>>;
252template <
typename VTYPE>
254 proxy_access::non_constant, proxy_type::reference> {
258 using type = std::add_lvalue_reference_t<vector<VTYPE>>;
263 std::add_lvalue_reference_t<std::add_const_t<vector<VTYPE>>>;
275template <
typename VTYPE, proxy_access PACCESS>
277 proxy_type::standalone> {
285 std::add_lvalue_reference_t<std::add_const_t<type>>;
327template <
typename VARTYPE, proxy_domain PDOMAIN>
329 proxy_type::reference> {
332 template <
typename, proxy_domain, proxy_access, proxy_type>
338 proxy_type::reference>::type>;
341 template <
typename ITYPE,
typename CONTAINER>
348 template <std::
size_t INDEX,
typename ITYPE,
typename CONTAINER>
349 VECMEM_HOST_AND_DEVICE
static proxy_tuple_type make_impl(
354 proxy_type::reference>::make(
i,
c.template
get<INDEX>())};
359template <
typename VARTYPE, proxy_domain PDOMAIN>
361 proxy_type::reference> {
364 template <
typename, proxy_domain, proxy_access, proxy_type>
370 proxy_type::reference>::type>;
373 template <
typename ITYPE,
typename CONTAINER>
379 template <std::
size_t INDEX,
typename ITYPE,
typename CONTAINER>
380 VECMEM_HOST_AND_DEVICE
static proxy_tuple_type make_impl(
ITYPE i,
385 proxy_type::reference>::make(
i,
c.template
get<INDEX>())};
392 proxy_access::constant, proxy_type::reference> {
395 template <
typename, proxy_domain, proxy_access, proxy_type>
401 proxy_type::reference>::type,
403 proxy_type::reference>::type...>;
406 template <
typename ITYPE,
typename CONTAINER>
413 template <std::
size_t INDEX,
typename ITYPE,
typename CONTAINER>
414 VECMEM_HOST_AND_DEVICE
static proxy_tuple_type make_impl(
417 return proxy_tuple_type(
420 proxy_type::reference>::make(
i,
c.template
get<INDEX>()),
430 proxy_access::non_constant, proxy_type::reference> {
433 template <
typename, proxy_domain, proxy_access, proxy_type>
439 proxy_type::reference>::type,
441 proxy_type::reference>::type...>;
444 template <
typename ITYPE,
typename CONTAINER>
450 template <std::
size_t INDEX,
typename ITYPE,
typename CONTAINER>
451 VECMEM_HOST_AND_DEVICE
static proxy_tuple_type make_impl(
ITYPE i,
454 return proxy_tuple_type(
457 proxy_type::reference>::make(
i,
c.template
get<INDEX>()),
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