10#include "vecmem/edm/details/device_traits.hpp"
11#include "vecmem/edm/details/schema_traits.hpp"
12#include "vecmem/memory/device_atomic_ref.hpp"
23 : m_capacity{
view.capacity()},
24 m_size{details::device_size_pointer<
vecmem::details::disjunction_v<
26 m_data{
view.variables()} {
29 assert(details::device_capacities_match<VARTYPES...>(
30 m_capacity, m_data, std::index_sequence_for<VARTYPES...>{}));
38 assert(details::device_capacities_match<VARTYPES...>(
39 m_capacity, m_data, std::index_sequence_for<VARTYPES...>{}));
41 return (m_size ==
nullptr ? m_capacity : *m_size);
49 assert(details::device_capacities_match<VARTYPES...>(
50 m_capacity, m_data, std::index_sequence_for<VARTYPES...>{}));
56VECMEM_HOST_AND_DEVICE
auto
62 "Containers with jagged vector variables cannot be resized!");
66 "This function requires at least one vector variable.");
70 assert(details::device_capacities_match<VARTYPES...>(
71 m_capacity, m_data, std::index_sequence_for<VARTYPES...>{}));
77 assert(index < m_capacity);
80 construct_default(index, std::index_sequence_for<VARTYPES...>{});
91 const size_type index = push_back_default();
101template <std::
size_t INDEX>
102VECMEM_HOST_AND_DEVICE
111template <std::
size_t INDEX>
112VECMEM_HOST_AND_DEVICE
121VECMEM_HOST_AND_DEVICE
129 return this->operator[](index);
133VECMEM_HOST_AND_DEVICE
141 return this->operator[](index);
145VECMEM_HOST_AND_DEVICE
154VECMEM_HOST_AND_DEVICE
177template <std::size_t
INDEX, std::size_t...
Is>
178VECMEM_HOST_AND_DEVICE
void
180 size_type index, std::index_sequence<INDEX, Is...>) {
185 construct_default(index, std::index_sequence<Is...>{});
189VECMEM_HOST_AND_DEVICE
void
191 size_type, std::index_sequence<>) {}
195VECMEM_HOST_AND_DEVICE
void
200VECMEM_HOST_AND_DEVICE
void
204 vec.construct(index, {});
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
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 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
typename tuple_element< I, T >::type tuple_element_t
Convenience accessor for the I-th element of a tuple.
Definition tuple.hpp:211
Implementation for std::disjunction.
Definition type_traits.hpp:72
Definition device_traits.hpp:70
Definition device_traits.hpp:55
Meta type describing the "schema" of an SoA container.
Definition schema.hpp:46
Definition schema_traits.hpp:82
Definition schema_traits.hpp:64
Default tuple type.
Definition tuple.hpp:24