11#include "vecmem/containers/details/aligned_multiple_placement.hpp"
24template <
typename TYPE>
25std::vector<std::size_t> get_sizes(
28 std::vector<std::size_t> result(jvv.
size());
30 [](
const auto& vv) { return vv.size(); });
35template <
typename TYPE>
38allocate_jagged_buffer_outer_memory(
40 vecmem::memory_resource& resource) {
59template <
typename TYPE>
62template <
typename TYPE>
64 std::enable_if_t<std::is_convertible<TYPE, OTHERTYPE>::value,
bool> >
71template <
typename TYPE>
73 std::enable_if_t<std::is_integral<SIZE_TYPE>::value &&
74 std::is_unsigned<SIZE_TYPE>::value,
77 const std::vector<SIZE_TYPE>&
capacities, memory_resource& resource,
89 TYPE>::value_type::size_type;
101 data_ptr =
reinterpret_cast<TYPE*
>(m_inner_memory.get());
106 details::aligned_multiple_placement<header_t, TYPE>(
114 : m_outer_host_memory.get()),
115 m_outer_host_memory.get()});
135template <
typename TYPE>
142template <
typename TYPE>
Object owning all the data of a jagged vector.
Definition jagged_vector_buffer.hpp:30
typename base_type::size_type size_type
Use the base class's size_type.
Definition jagged_vector_buffer.hpp:36
typename base_type::value_type value_type
Use the base class's value_type.
Definition jagged_vector_buffer.hpp:38
jagged_vector_buffer()
Make sure that the template type does not have a custom destructor.
Definition jagged_vector_buffer.ipp:60
A view for jagged vectors.
Definition jagged_vector_view.hpp:44
VECMEM_HOST_AND_DEVICE pointer host_ptr() const
Access the host accessible array describing the inner vectors.
Definition jagged_vector_view.ipp:102
VECMEM_HOST_AND_DEVICE jagged_vector_view & operator=(const jagged_vector_view< OTHERTYPE > &rhs)
Assignment operator from a "slightly different" object.
VECMEM_HOST_AND_DEVICE size_type size() const
Get the "outer" size of the jagged vector.
Definition jagged_vector_view.ipp:83
buffer_type
"Overall type" for a buffer object
Definition buffer_type.hpp:13
@ fixed_size
The buffer has a fixed number of elements.
@ resizable
The buffer is resizable/expandable.
Main namespace for the vecmem classes/functions.
Definition atomic_ref.hpp:16
std::vector< T, vecmem::polymorphic_allocator< T > > vector
Alias type for vectors with our polymorphic allocator.
Definition vector.hpp:35
unique_alloc_ptr< T > make_unique_alloc(memory_resource &m)
Create a unique allocation pointer to a type.
Definition unique_ptr.hpp:185
std::unique_ptr< T, details::unique_alloc_deleter< T > > unique_alloc_ptr
A unique pointer type for trivial types.
Definition unique_ptr.hpp:69
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