vecmem 1.14.0
Loading...
Searching...
No Matches
device.hpp
1/* VecMem project, part of the ACTS project (R&D line)
2 *
3 * (c) 2023-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/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"
16
17// System include(s).
18#include <utility>
19
20namespace vecmem {
21namespace edm {
22
24template <typename T, template <typename> class I>
25class device;
26
35template <typename... VARTYPES, template <typename> class INTERFACE>
37
38 // Sanity check(s).
39 static_assert(sizeof...(VARTYPES) > 0,
40 "SoA containers without variables are not supported.");
41
42public:
52 template <typename T>
55 using proxy_type =
56 interface_type<proxy<schema_type, details::proxy_domain::device,
57 details::proxy_access::non_constant,
58 details::proxy_type::reference>>;
61 proxy<schema_type, details::proxy_domain::device,
62 details::proxy_access::constant, details::proxy_type::reference>>;
65 interface_type<proxy<schema_type, details::proxy_domain::device,
66 details::proxy_access::non_constant,
67 details::proxy_type::standalone>>;
68
71
73 VECMEM_HOST_AND_DEVICE
75
77
80
82 VECMEM_HOST_AND_DEVICE
83 size_type size() const;
85 VECMEM_HOST_AND_DEVICE
86 size_type capacity() const;
87
89 VECMEM_HOST_AND_DEVICE
90 size_type push_back_default();
92 VECMEM_HOST_AND_DEVICE size_type push_back(const object_type& element);
93
95 template <std::size_t INDEX>
96 VECMEM_HOST_AND_DEVICE
97 typename details::device_type_at<INDEX, VARTYPES...>::return_type
98 get();
100 template <std::size_t INDEX>
101 VECMEM_HOST_AND_DEVICE
102 typename details::device_type_at<INDEX, VARTYPES...>::const_return_type
103 get() const;
104
112 VECMEM_HOST_AND_DEVICE
113 proxy_type at(size_type index);
121 VECMEM_HOST_AND_DEVICE
122 const_proxy_type at(size_type index) const;
123
129 VECMEM_HOST_AND_DEVICE
130 proxy_type operator[](size_type index);
136 VECMEM_HOST_AND_DEVICE
137 const_proxy_type operator[](size_type index) const;
138
140
143
145 VECMEM_HOST_AND_DEVICE
146 tuple_type& variables();
148 VECMEM_HOST_AND_DEVICE
149 const tuple_type& variables() const;
150
152
153private:
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<>);
161
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,
169
171 size_type m_capacity = 0;
173 size_pointer m_size = nullptr;
175 tuple_type m_data;
176
177}; // class device
178
179} // namespace edm
180} // namespace vecmem
181
182// Include the implementation.
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