10#include "vecmem/edm/details/host_traits.hpp"
11#include "vecmem/edm/details/schema_traits.hpp"
23 memory_resource& resource)
24 : m_data{details::host_alloc<
VARTYPES>::make(resource)...},
25 m_resource{resource} {}
32 std::disjunction_v<type::details::is_vector<VARTYPES>...>,
33 "This function requires at least one (jagged) vector variable.");
36 return details::get_host_size<
VARTYPES...>(
37 m_data, std::index_sequence_for<
VARTYPES...>{});
46 std::disjunction_v<type::details::is_vector<VARTYPES>...>,
47 "This function requires at least one (jagged) vector variable.");
50 details::host_resize<
VARTYPES...>(m_data, size,
51 std::index_sequence_for<
VARTYPES...>{});
60 std::disjunction_v<type::details::is_vector<VARTYPES>...>,
61 "This function requires at least one (jagged) vector variable.");
64 details::host_reserve<
VARTYPES...>(m_data, size,
65 std::index_sequence_for<
VARTYPES...>{});
74 std::disjunction_v<type::details::is_vector<VARTYPES>...>,
75 "This function requires at least one (jagged) vector variable.");
85template <std::
size_t INDEX>
91 if constexpr (type::details::is_scalar_v<
typename std::tuple_element<
93 return std::get<INDEX>(m_data)[0];
95 return std::get<INDEX>(m_data);
100template <std::
size_t INDEX>
107 if constexpr (type::details::is_scalar_v<
typename std::tuple_element<
109 return std::get<INDEX>(m_data)[0];
111 return std::get<INDEX>(m_data);
120 if (index >= size()) {
121 throw std::out_of_range(
"index (" + std::to_string(index) +
122 ") >= size (" + std::to_string(size()) +
")");
126 return this->operator[](index);
134 if (index >= size()) {
135 throw std::out_of_range(
"index (" + std::to_string(index) +
136 ") >= size (" + std::to_string(size()) +
")");
140 return this->operator[](index);
186 memory_resource&, std::index_sequence<>) {
192 std::size_t
I, std::size_t...
Is>
196 std::index_sequence<I, Is...>) {
198 if constexpr (edm::type::details::is_jagged_vector_v<
199 typename std::tuple_element<
204 std::get<I>(data.variables()) =
211 typename std::tuple_element<
212 I, std::tuple<
VARTYPES...>>::type>::value) {
228 memory_resource* resource) {
233 memory_resource&
mr = (resource !=
nullptr ? *resource : host.resource());
237 if constexpr (std::disjunction_v<
246 std::index_sequence_for<
VARTYPES...>{});
256 memory_resource&, std::index_sequence<>) {
262 std::size_t
I, std::size_t...
Is>
266 memory_resource&
mr, std::index_sequence<I, Is...>) {
269 typename std::tuple_element<
270 I, std::tuple<
VARTYPES...>>::type>::value) {
274 std::get<I>(data.variables()) =
281 typename std::tuple_element<
282 I, std::tuple<
VARTYPES...>>::type>::value) {
296VECMEM_HOST edm::data<edm::details::add_const_t<edm::schema<
VARTYPES...>>>
298 memory_resource* resource) {
303 memory_resource&
mr = (resource !=
nullptr ? *resource : host.resource());
307 if constexpr (std::disjunction_v<
316 std::index_sequence_for<
VARTYPES...>{});
Technical base type for data<schema<VARTYPES...>>
Definition data.hpp:25
interface_type< proxy< schema_type, details::proxy_domain::host, details::proxy_access::non_constant, details::proxy_type::standalone > > object_type
Type type of standalone proxy objects for the container.
Definition host.hpp:66
interface_type< proxy< schema_type, details::proxy_domain::host, details::proxy_access::non_constant, details::proxy_type::reference > > proxy_type
The type of the (non-const) proxy objects for the container elements.
Definition host.hpp:57
interface_type< proxy< schema_type, details::proxy_domain::host, details::proxy_access::constant, details::proxy_type::reference > > const_proxy_type
The type of the (const) proxy objects for the container elements.
Definition host.hpp:61
std::size_t size_type
Size type used for the container.
Definition host.hpp:46
Technical base type for host<schema<VARTYPES...>,INTERFACE>
Definition host.hpp:28
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
VECMEM_HOST void get_data_impl(edm::host< edm::schema< VARTYPES... >, INTERFACE > &, edm::data< edm::schema< VARTYPES... > > &, memory_resource &, std::index_sequence<>)
Helper function terminal node.
Definition host.ipp:184
std::vector< T, vecmem::polymorphic_allocator< T > > vector
Alias type for vectors with our polymorphic allocator.
Definition vector.hpp:35
VECMEM_HOST data::vector_view< T > get_data(array< T, N > &a)
Helper function creating a vecmem::data::vector_view object.
Definition array.ipp:217
Definition host_traits.hpp:56
Meta type describing the "schema" of an SoA container.
Definition schema.hpp:46
Definition schema_traits.hpp:82
Definition schema_traits.hpp:51
Definition schema_traits.hpp:64