vecmem 1.14.0
Loading...
Searching...
No Matches
jagged_vector.ipp
1/*
2 * VecMem project, part of the ACTS project (R&D line)
3 *
4 * (c) 2021 CERN for the benefit of the ACTS project
5 *
6 * Mozilla Public License Version 2.0
7 */
8#pragma once
9
10// System include(s).
11#include <cassert>
12
13namespace vecmem {
14
15template <typename TYPE>
17 memory_resource* resource) {
18
19 // Get the size of the "outer vector".
20 const std::size_t size = vec.size();
21
22 // Construct the object to be returned.
24 size,
25 (resource != nullptr ? *resource : *(vec.get_allocator().resource())));
26
27 // Helper local type definition(s).
28 typedef typename data::jagged_vector_data<TYPE>::value_type value_type;
29 typedef typename value_type::size_type size_type;
30
31 // Fill the result object with information.
32 for (std::size_t i = 0; i < size; ++i) {
33 result.host_ptr()[i] =
34 value_type(static_cast<size_type>(vec[i].size()), vec[i].data());
35 }
36
37 // Return the created object.
38 return result;
39}
40
41template <typename TYPE, typename ALLOC1, typename ALLOC2>
43 std::vector<std::vector<TYPE, ALLOC1>, ALLOC2>& vec,
44 memory_resource* resource) {
45
46 // This function needs a non-null memory resource pointer.
47 assert(resource != nullptr);
48
49 // Get the size of the "outer vector".
50 const std::size_t size = vec.size();
51
52 // Construct the object to be returned.
54
55 // Helper local type definition(s).
56 typedef typename data::jagged_vector_data<TYPE>::value_type value_type;
57 typedef typename value_type::size_type size_type;
58
59 // Fill the result object with information.
60 for (std::size_t i = 0; i < size; ++i) {
61 result.host_ptr()[i] =
62 value_type(static_cast<size_type>(vec[i].size()), vec[i].data());
63 }
64
65 // Return the created object.
66 return result;
67}
68
69template <typename TYPE>
71 memory_resource* resource) {
72
73 // Get the size of the "outer vector".
74 const std::size_t size = vec.size();
75
76 // Construct the object to be returned.
78 size,
79 (resource != nullptr ? *resource : *(vec.get_allocator().resource())));
80
81 // Helper local type definition(s).
82 typedef
84 typedef typename value_type::size_type size_type;
85
86 // Fill the result object with information.
87 for (std::size_t i = 0; i < size; ++i) {
88 result.host_ptr()[i] =
89 value_type(static_cast<size_type>(vec[i].size()), vec[i].data());
90 }
91
92 // Return the created object.
93 return result;
94}
95
96template <typename TYPE, typename ALLOC1, typename ALLOC2>
98 const std::vector<std::vector<TYPE, ALLOC1>, ALLOC2>& vec,
99 memory_resource* resource) {
100
101 // This function needs a non-null memory resource pointer.
102 assert(resource != nullptr);
103
104 // Get the size of the "outer vector".
105 const std::size_t size = vec.size();
106
107 // Construct the object to be returned.
109
110 // Helper local type definition(s).
111 typedef
113 typedef typename value_type::size_type size_type;
114
115 // Fill the result object with information.
116 for (std::size_t i = 0; i < size; ++i) {
117 result.host_ptr()[i] =
118 value_type(static_cast<size_type>(vec[i].size()), vec[i].data());
119 }
120
121 // Return the created object.
122 return result;
123}
124
125} // namespace vecmem
A data wrapper for jagged vectors.
Definition jagged_vector_data.hpp:30
typename base_type::value_type value_type
Use the base class's value_type.
Definition jagged_vector_data.hpp:38
VECMEM_HOST_AND_DEVICE size_type size() const
Get the "outer" size of the jagged vector.
Definition jagged_vector_view.ipp:83
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
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