10#include "vecmem/edm/details/device_traits.hpp"
11#include "vecmem/edm/proxy.hpp"
12#include "vecmem/edm/schema.hpp"
13#include "vecmem/edm/view.hpp"
14#include "vecmem/utils/tuple.hpp"
15#include "vecmem/utils/types.hpp"
24template <
typename T,
template <
typename>
class I>
39 static_assert(
sizeof...(VARTYPES) > 0,
40 "SoA containers without variables are not supported.");
57 details::proxy_access::non_constant,
58 details::proxy_type::reference>>;
62 details::proxy_access::constant, details::proxy_type::reference>>;
66 details::proxy_access::non_constant,
67 details::proxy_type::standalone>>;
73 VECMEM_HOST_AND_DEVICE
82 VECMEM_HOST_AND_DEVICE
85 VECMEM_HOST_AND_DEVICE
89 VECMEM_HOST_AND_DEVICE
95 template <std::
size_t INDEX>
96 VECMEM_HOST_AND_DEVICE
100 template <std::
size_t INDEX>
101 VECMEM_HOST_AND_DEVICE
112 VECMEM_HOST_AND_DEVICE
121 VECMEM_HOST_AND_DEVICE
129 VECMEM_HOST_AND_DEVICE
136 VECMEM_HOST_AND_DEVICE
145 VECMEM_HOST_AND_DEVICE
148 VECMEM_HOST_AND_DEVICE
155 template <std::size_t
INDEX, std::size_t...
Is>
156 VECMEM_HOST_AND_DEVICE
void construct_default(
157 size_type index, std::index_sequence<INDEX, Is...>);
159 VECMEM_HOST_AND_DEVICE
void construct_default(
size_type index,
160 std::index_sequence<>);
163 template <
typename T>
164 VECMEM_HOST_AND_DEVICE
void construct_vector(
size_type,
T&);
166 template <
typename T>
167 VECMEM_HOST_AND_DEVICE
void construct_vector(
size_type index,
183#include "vecmem/edm/impl/device.ipp"
INTERFACE< T > interface_type
The type of the interface used for the proxy objects.
Definition device.hpp:53
interface_type< proxy< schema_type, details::proxy_domain::device, details::proxy_access::non_constant, details::proxy_type::reference > > proxy_type
The type of the (non-const) proxy objects for the container elements.
Definition device.hpp:58
typename view< schema_type >::size_pointer size_pointer
Pointer type to the size of the container.
Definition device.hpp:48
interface_type< proxy< schema_type, details::proxy_domain::device, details::proxy_access::non_constant, details::proxy_type::standalone > > object_type
Type type of standalone proxy objects for the container.
Definition device.hpp:67
interface_type< proxy< schema_type, details::proxy_domain::device, details::proxy_access::constant, details::proxy_type::reference > > const_proxy_type
The type of the (const) proxy objects for the container elements.
Definition device.hpp:62
typename view< schema_type >::size_type size_type
Size type used for the container.
Definition device.hpp:46
Technical base type for device<schema<VARTYPES...>,INTERFACE>
Definition device_vector.hpp:25
Technical base type for proxy<schema<VARTYPES...>,PDOMAIN,PACCESS,PTYPE>
Definition proxy.hpp:21
Technical base type for view<schema<VARTYPES...>>
Definition view.hpp:28
Main namespace for the vecmem classes/functions.
Definition atomic_ref.hpp:16
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
Definition device_traits.hpp:55
Meta type describing the "schema" of an SoA container.
Definition schema.hpp:46