vecmem 1.14.0
Loading...
Searching...
No Matches
jagged_vector_buffer.ipp
1/*
2 * VecMem project, part of the ACTS project (R&D line)
3 *
4 * (c) 2021-2025 CERN for the benefit of the ACTS project
5 *
6 * Mozilla Public License Version 2.0
7 */
8#pragma once
9
10// vecmem include(s).
11#include "vecmem/containers/details/aligned_multiple_placement.hpp"
12
13// System include(s).
14#include <algorithm>
15#include <cassert>
16#include <cstddef>
17#include <memory>
18#include <numeric>
19#include <vector>
20
21namespace {
22
24template <typename TYPE>
25std::vector<std::size_t> get_sizes(
27
28 std::vector<std::size_t> result(jvv.size());
29 std::transform(jvv.host_ptr(), jvv.host_ptr() + jvv.size(), result.begin(),
30 [](const auto& vv) { return vv.size(); });
31 return result;
32}
33
35template <typename TYPE>
38allocate_jagged_buffer_outer_memory(
40 vecmem::memory_resource& resource) {
41
42 if (size == 0) {
43 return nullptr;
44 } else {
47 resource, size);
48 }
49}
50} // namespace
51
52namespace vecmem {
53namespace data {
54
59template <typename TYPE>
61
62template <typename TYPE>
63template <typename OTHERTYPE,
64 std::enable_if_t<std::is_convertible<TYPE, OTHERTYPE>::value, bool> >
66 const jagged_vector_view<OTHERTYPE>& other, memory_resource& resource,
67 memory_resource* host_access_resource, buffer_type type)
68 : jagged_vector_buffer(::get_sizes(other), resource, host_access_resource,
69 type) {}
70
71template <typename TYPE>
72template <typename SIZE_TYPE,
73 std::enable_if_t<std::is_integral<SIZE_TYPE>::value &&
74 std::is_unsigned<SIZE_TYPE>::value,
75 bool> >
77 const std::vector<SIZE_TYPE>& capacities, memory_resource& resource,
78 memory_resource* host_access_resource, buffer_type type)
79 : base_type(capacities.size(), nullptr),
81 (host_access_resource == nullptr ? 0 : capacities.size()), resource)),
82 m_outer_host_memory(::allocate_jagged_buffer_outer_memory<TYPE>(
83 capacities.size(),
84 (host_access_resource == nullptr ? resource
86
87 // Determine the allocation size.
89 TYPE>::value_type::size_type;
90 const std::size_t total_elements = std::accumulate(
91 capacities.begin(), capacities.end(), static_cast<std::size_t>(0));
92
93 // Helper pointers to the "inner data".
94 header_t* header_ptr = nullptr;
95 TYPE* data_ptr = nullptr;
96
97 // Allocate the "inner memory" for a fixed size buffer.
98 if (type == buffer_type::fixed_size && total_elements != 0) {
99 m_inner_memory = vecmem::make_unique_alloc<char[]>(
100 resource, total_elements * sizeof(TYPE));
101 data_ptr = reinterpret_cast<TYPE*>(m_inner_memory.get());
102 }
103 // Allocate the "inner memory" for a resizable buffer.
104 else if (type == buffer_type::resizable && capacities.size() != 0) {
105 std::tie(m_inner_memory, header_ptr, data_ptr) =
106 details::aligned_multiple_placement<header_t, TYPE>(
107 resource, capacities.size(), total_elements);
108 }
109
110 // Set up the base object.
113 ((host_access_resource != nullptr) ? m_outer_memory.get()
114 : m_outer_host_memory.get()),
115 m_outer_host_memory.get()});
116
117 // Set up the vecmem::vector_view objects in the host accessible memory.
118 std::ptrdiff_t ptrdiff = 0;
119 for (std::size_t i = 0; i < capacities.size(); ++i) {
120 if (header_ptr != nullptr) {
122 static_cast<typename value_type::size_type>(capacities[i]),
124 } else {
126 static_cast<typename value_type::size_type>(capacities[i]),
127 data_ptr + ptrdiff);
128 }
129 ptrdiff += capacities[i];
130 }
131}
132
133} // namespace data
134
135template <typename TYPE>
141
142template <typename TYPE>
145
146 return data;
147}
148
149} // namespace vecmem
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