vecmem 1.14.0
Loading...
Searching...
No Matches
vector_view.ipp
1/* VecMem project, part of the ACTS project (R&D line)
2 *
3 * (c) 2021-2025 CERN for the benefit of the ACTS project
4 *
5 * Mozilla Public License Version 2.0
6 */
7#pragma once
8
9namespace vecmem {
10namespace data {
11
12template <typename TYPE>
13VECMEM_HOST_AND_DEVICE vector_view<TYPE>::vector_view(size_type size,
14 pointer ptr)
15 : m_capacity(size), m_size(nullptr), m_ptr(ptr) {}
16
17template <typename TYPE>
18VECMEM_HOST_AND_DEVICE vector_view<TYPE>::vector_view(size_type capacity,
19 size_pointer size,
20 pointer ptr)
21 : m_capacity(capacity), m_size(size), m_ptr(ptr) {}
22
23template <typename TYPE>
24template <typename OTHERTYPE,
25 std::enable_if_t<details::is_same_nc<TYPE, OTHERTYPE>::value, bool> >
26VECMEM_HOST_AND_DEVICE vector_view<TYPE>::vector_view(
27 const vector_view<OTHERTYPE>& parent)
28 : m_capacity(parent.capacity()),
29 m_size(parent.size_ptr()),
30 m_ptr(parent.ptr()) {}
31
32template <typename TYPE>
33template <typename OTHERTYPE,
34 std::enable_if_t<details::is_same_nc<TYPE, OTHERTYPE>::value, bool> >
37
38 // Self-assignment is not dangerous for this type. But putting in
39 // extra checks into the code would not be great.
40 m_capacity = rhs.capacity();
41 m_size = rhs.size_ptr();
42 m_ptr = rhs.ptr();
43
44 // Return this (updated) object.
45 return *this;
46}
47
48template <typename TYPE>
49template <typename OTHERTYPE,
50 std::enable_if_t<std::is_same<std::remove_cv_t<TYPE>,
51 std::remove_cv_t<OTHERTYPE> >::value,
52 bool> >
53VECMEM_HOST_AND_DEVICE bool vector_view<TYPE>::operator==(
54 const vector_view<OTHERTYPE>& rhs) const {
55
56 return ((m_capacity == rhs.capacity()) && (m_size == rhs.size_ptr()) &&
57 (m_ptr == rhs.ptr()));
58}
59
60template <typename TYPE>
61template <typename OTHERTYPE,
62 std::enable_if_t<std::is_same<std::remove_cv_t<TYPE>,
63 std::remove_cv_t<OTHERTYPE> >::value,
64 bool> >
65VECMEM_HOST_AND_DEVICE bool vector_view<TYPE>::operator!=(
66 const vector_view<OTHERTYPE>& rhs) const {
67
68 return !(*this == rhs);
69}
70
71template <typename TYPE>
72VECMEM_HOST_AND_DEVICE auto vector_view<TYPE>::size() const -> size_type {
73
74 return (m_size == nullptr ? m_capacity : *m_size);
75}
76
77template <typename TYPE>
78VECMEM_HOST_AND_DEVICE auto vector_view<TYPE>::capacity() const -> size_type {
79
80 return m_capacity;
81}
82
83template <typename TYPE>
84VECMEM_HOST_AND_DEVICE auto vector_view<TYPE>::size_ptr() const
85 -> size_pointer {
86
87 return m_size;
88}
89
90template <typename TYPE>
91VECMEM_HOST_AND_DEVICE auto vector_view<TYPE>::ptr() const -> pointer {
92
93 return m_ptr;
94}
95
96} // namespace data
97} // namespace vecmem
VECMEM_HOST_AND_DEVICE vector_view & operator=(const vector_view< OTHERTYPE > &rhs)
Copy from a "slightly different" vecmem::details::vector_view object.
std::add_pointer_t< TYPE > pointer
Pointer type to the array.
Definition vector_view.hpp:54
VECMEM_HOST_AND_DEVICE bool operator!=(const vector_view< OTHERTYPE > &rhs) const
Inequality check. Simply based on operator==.
Definition vector_view.ipp:65
VECMEM_HOST_AND_DEVICE pointer ptr() const
Get a pointer to the vector elements.
Definition vector_view.ipp:91
unsigned int size_type
We cannot use boolean types.
Definition vector_view.hpp:47
vector_view()=default
Default constructor.
VECMEM_HOST_AND_DEVICE bool operator==(const vector_view< OTHERTYPE > &rhs) const
Equality check.
Definition vector_view.ipp:53
VECMEM_HOST_AND_DEVICE size_pointer size_ptr() const
Get a pointer to the size of the vector.
Definition vector_view.ipp:84
std::conditional_t< std::is_const< TYPE >::value, std::add_pointer_t< std::add_const_t< size_type > >, std::add_pointer_t< size_type > > size_pointer
Pointer type to the size of the array.
Definition vector_view.hpp:52
VECMEM_HOST_AND_DEVICE size_type capacity() const
Get the maximum capacity of the vector.
Definition vector_view.ipp:78
VECMEM_HOST_AND_DEVICE size_type size() const
Get the size of the vector.
Definition vector_view.ipp:72
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