vecmem 1.14.0
Loading...
Searching...
No Matches
jagged_vector_data.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
9#pragma once
10
11// System include(s).
12#include <cstddef>
13
14namespace {
15
17template <typename TYPE>
20allocate_jagged_memory(
22 vecmem::memory_resource& resource) {
23
24 if (size == 0) {
25 return nullptr;
26 } else {
29 resource, size);
30 }
31}
32
33} // namespace
34
35namespace vecmem {
36namespace data {
37
42template <typename T>
45
46template <typename T>
48 : base_type(size, nullptr),
49 m_memory(::allocate_jagged_memory<T>(size, mem)) {
50
51 // Set up the base object.
52 base_type::operator=(base_type{size, m_memory.get(), m_memory.get()});
53
54 /*
55 * Construct vecmem::data::vector_view objects in the allocated area.
56 * Simply with their default constructors, as they will need to be
57 * filled "from the outside".
58 */
59 for (std::size_t i = 0; i < size; ++i) {
60 /*
61 * We use the memory allocated earlier and construct device vector
62 * objects there.
63 */
65 }
66}
67
68} // namespace data
69
70template <typename TYPE>
75
76template <typename TYPE>
79
80 return data;
81}
82
83} // namespace vecmem
A data wrapper for jagged vectors.
Definition jagged_vector_data.hpp:30
jagged_vector_data()
Default constructor.
Definition jagged_vector_data.ipp:43
typename base_type::size_type size_type
Use the base class's size_type.
Definition jagged_vector_data.hpp:36
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.
std::size_t size_type
We cannot use boolean types.
Definition jagged_vector_view.hpp:52
VECMEM_HOST_AND_DEVICE size_type size() const
Get the "outer" size of the jagged vector.
Definition jagged_vector_view.ipp:83
vector_view< T > value_type
Value type of the jagged array.
Definition jagged_vector_view.hpp:54
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