10#include "vecmem/utils/debug.hpp"
19template <
typename TYPE>
22 : m_capacity(data.capacity()), m_size(data.size_ptr()), m_ptr(data.ptr()) {
25 "Created vecmem::device_vector with capacity %u and "
26 "size pointer %p from pointer %p",
27 m_capacity,
static_cast<const void*
>(m_size),
28 static_cast<const void*
>(m_ptr));
31template <
typename TYPE>
33 std::enable_if_t<std::is_convertible<OTHERTYPE, TYPE>::value,
bool>>
36 : m_capacity(parent.m_capacity),
37 m_size(parent.m_size),
41 "Created vecmem::device_vector with capacity %u and "
42 "size pointer %p from pointer %p",
43 m_capacity,
static_cast<const void*
>(m_size),
44 static_cast<const void*
>(m_ptr));
47template <
typename TYPE>
59 this->at(
i) =
rhs.at(
i);
66template <
typename TYPE>
68 std::enable_if_t<std::is_convertible<OTHERTYPE, TYPE>::value,
bool>>
74 for (size_type
i = 0;
i < size(); ++
i) {
75 this->at(
i) =
rhs.at(
i);
82template <
typename TYPE>
93template <
typename TYPE>
104template <
typename TYPE>
112template <
typename TYPE>
120template <
typename TYPE>
130template <
typename TYPE>
141template <
typename TYPE>
148 return m_ptr[size() - 1];
151template <
typename TYPE>
159 return m_ptr[size() - 1];
162template <
typename TYPE>
168template <
typename TYPE>
174template <
typename TYPE>
179 assert(m_size !=
nullptr);
180 assert(m_capacity >= count);
194template <
typename TYPE>
195template <
typename...
Args>
200 assert(m_size !=
nullptr);
205 const size_type index =
asize.fetch_add(1u);
206 assert(index < m_capacity);
209 new (m_ptr + index) value_type(std::forward<Args>(
args)...);
215template <
typename TYPE>
220 assert(m_size !=
nullptr);
226 assert(index < m_capacity);
229 construct(index, value);
235template <
typename TYPE>
239 assert(m_size !=
nullptr);
241 static_assert(std::is_default_constructible<TYPE>::value,
242 "Type `T` in `device_vector<T>::bulk_append` is not a "
243 "default-constructible type.");
247 assert((index +
n) <= m_capacity);
256template <
typename TYPE>
261 assert(m_size !=
nullptr);
263 static_assert(std::is_copy_constructible<TYPE>::value,
264 "Type `TYPE` in device_vector<T>::bulk_append(SIZE, TYPE)` "
265 "must be copy-constructible.");
269 assert((index +
n) <= m_capacity);
278template <
typename TYPE>
282 assert(m_size !=
nullptr);
285 "Type `TYPE` in `device_vector<T>::bulk_append_implicit` is "
286 "not an implicit lifetype type, so slots cannot be safely "
287 "reserved. Note that the definition of implicit lifetimes "
288 "differs between C++<=17, C++20, and C++>=23.");
292 assert((index +
n) <= m_capacity);
294#if defined(__cpp_lib_start_lifetime_as) && \
295 __cpp_lib_start_lifetime_as >= 202207L
296 std::start_lifetime_as_array<TYPE>(m_ptr[index],
n);
302template <
typename TYPE>
306 assert(m_size !=
nullptr);
310 assert((index +
n) <= m_capacity);
315template <
typename TYPE>
319 assert(m_size !=
nullptr);
332template <
typename TYPE>
336 assert(m_size !=
nullptr);
349template <
typename TYPE>
355template <
typename TYPE>
360 assert(m_size !=
nullptr);
389template <
typename TYPE>
393 assert(m_size !=
nullptr);
396 "Type `TYPE` in `device_vector<T>::resize_implicit` is not "
397 "an implicit lifetype type, so slots cannot be safely "
398 "reserved. Note that the definition of implicit lifetimes "
399 "differs between C++<=17, C++20, and C++>=23.");
406template <
typename TYPE>
410 assert(m_size !=
nullptr);
417template <
typename TYPE>
423template <
typename TYPE>
430template <
typename TYPE>
437template <
typename TYPE>
443template <
typename TYPE>
449template <
typename TYPE>
456template <
typename TYPE>
462template <
typename TYPE>
469template <
typename TYPE>
476template <
typename TYPE>
482template <
typename TYPE>
489template <
typename TYPE>
496template <
typename TYPE>
499 return (size() == 0);
502template <
typename TYPE>
505 if (m_size ==
nullptr) {
518template <
typename TYPE>
524template <
typename TYPE>
530template <
typename TYPE>
532 size_type
pos, const_reference value) {
538 new (m_ptr +
pos) value_type(value);
541template <
typename TYPE>
542VECMEM_HOST_AND_DEVICE
void device_vector<TYPE>::destruct(size_type
pos) {
548 pointer ptr = m_ptr +
pos;
Class holding data about a 1 dimensional vector/array.
Definition vector_view.hpp:38
Type mimicking std::reverse_iterator.
Definition reverse_iterator.hpp:25
Class mimicking an std::vector in "device code".
Definition device_vector.hpp:36
VECMEM_HOST_AND_DEVICE size_type bulk_append(size_type n)
Default-construct a given number of elements at the end of the vector.
Definition device_vector.ipp:236
VECMEM_HOST_AND_DEVICE reference back()
Return the last element of the vector (non-const)
Definition device_vector.ipp:142
VECMEM_HOST_AND_DEVICE void clear()
Clear the vector (not thread-safe)
Definition device_vector.ipp:333
VECMEM_HOST_AND_DEVICE iterator begin()
Return a forward iterator pointing at the beginning of the vector.
Definition device_vector.ipp:418
VECMEM_HOST_AND_DEVICE reference operator[](size_type pos)
Return a specific element of the vector (non-const)
Definition device_vector.ipp:105
VECMEM_HOST_AND_DEVICE void resize_implicit_unsafe(size_type new_size)
Resize a vector in constant time, unsafely deallocating non-implicit lifetime types.
Definition device_vector.ipp:407
VECMEM_HOST_AND_DEVICE pointer data()
Access the underlying memory array (non-const)
Definition device_vector.ipp:163
std::add_pointer_t< value_type > pointer
Value pointer type.
Definition device_vector.hpp:64
VECMEM_HOST_AND_DEVICE size_type bulk_append_implicit_unsafe(size_type n)
Reserve a fixed number of slots in the array in a way that technically is ill-formed.
Definition device_vector.ipp:303
VECMEM_HOST_AND_DEVICE reference emplace_back(Args &&... args)
Add a new element at the end of the vector (thread-safe)
VECMEM_HOST_AND_DEVICE device_vector & operator=(const device_vector &rhs)
Copy assignment operator from an identical type.
Definition device_vector.ipp:48
std::add_pointer_t< std::add_const_t< value_type > > const_pointer
Constant value pointer type.
Definition device_vector.hpp:66
VECMEM_HOST_AND_DEVICE size_type capacity() const
Return the current (fixed) capacity of the vector.
Definition device_vector.ipp:525
TYPE value_type
Type of the array elements.
Definition device_vector.hpp:47
VECMEM_HOST_AND_DEVICE const_reverse_iterator crend() const
Return a constant reverse iterator pointing at the beginning of the vector.
Definition device_vector.ipp:490
VECMEM_HOST_AND_DEVICE size_type size() const
Return the number of elements in the vector.
Definition device_vector.ipp:503
const_pointer const_iterator
Constant forward iterator type.
Definition device_vector.hpp:71
VECMEM_HOST_AND_DEVICE bool empty() const
Check whether the vector is empty.
Definition device_vector.ipp:497
VECMEM_HOST_AND_DEVICE void assign(size_type count, const_reference value)
Assign new values to the vector (not thread-safe)
Definition device_vector.ipp:175
VECMEM_HOST_AND_DEVICE reference front()
Return the first element of the vector (non-const)
Definition device_vector.ipp:121
VECMEM_HOST_AND_DEVICE void resize(size_type new_size)
Resize the vector (not thread-safe)
Definition device_vector.ipp:350
VECMEM_HOST_AND_DEVICE const_reverse_iterator crbegin() const
Return a constant reverse iterator pointing at the end of the vector.
Definition device_vector.ipp:470
VECMEM_HOST_AND_DEVICE size_type push_back(const_reference value)
Add a new element at the end of the vector (thread-safe)
Definition device_vector.ipp:216
VECMEM_HOST_AND_DEVICE size_type bulk_append_implicit(size_type n)
Reserve a fixed number of slots in the array in a standards-conformant way.
Definition device_vector.ipp:279
unsigned int size_type
Size type for the array.
Definition device_vector.hpp:49
VECMEM_HOST_AND_DEVICE iterator end()
Return a forward iterator pointing at the end of the vector.
Definition device_vector.ipp:438
pointer iterator
Forward iterator type.
Definition device_vector.hpp:69
std::add_lvalue_reference_t< value_type > reference
Value reference type.
Definition device_vector.hpp:59
VECMEM_HOST_AND_DEVICE size_type max_size() const
Return the maximum (fixed) number of elements in the vector.
Definition device_vector.ipp:519
std::add_lvalue_reference_t< std::add_const_t< value_type > > const_reference
Constant value reference type.
Definition device_vector.hpp:62
VECMEM_HOST_AND_DEVICE const_iterator cend() const
Return a constant forward iterator pointing at the end of the vector.
Definition device_vector.ipp:450
VECMEM_HOST_AND_DEVICE reference at(size_type pos)
Return a specific element of the vector in a "safe way" (non-const)
Definition device_vector.ipp:83
VECMEM_HOST_AND_DEVICE const_iterator cbegin() const
Return a constant forward iterator pointing at the beginning of the vector.
Definition device_vector.ipp:431
VECMEM_HOST_AND_DEVICE size_type pop_back()
Remove the last element of the vector (not thread-safe)
Definition device_vector.ipp:316
VECMEM_HOST_AND_DEVICE reverse_iterator rend()
Return a reverse iterator pointing at the beginning of the vector.
Definition device_vector.ipp:477
VECMEM_HOST_AND_DEVICE device_vector(const data::vector_view< value_type > &data)
Constructor, on top of a previously allocated/filled block of memory.
Definition device_vector.ipp:20
VECMEM_HOST_AND_DEVICE reverse_iterator rbegin()
Return a reverse iterator pointing at the end of the vector.
Definition device_vector.ipp:457
VECMEM_HOST_AND_DEVICE void resize_implicit(size_type new_size)
Resize a vector of implicit lifetime types.
Definition device_vector.ipp:390
std::true_type is_implicit_lifetime
Type trait that indicates whether a given type is an implicit lifetime type.
Definition type_traits.hpp:150
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