15#ifndef dealii_array_view_h
16#define dealii_array_view_h
26#include <boost/container/small_vector.hpp>
38template <
int N,
typename T>
41template <
typename number>
86template <
typename ElementType,
typename MemorySpaceType = MemorySpace::Host>
145 const ArrayView<std::remove_cv_t<value_type>, MemorySpaceType> &view);
153#ifdef DEAL_II_HAVE_CXX20
171 template <
typename ContiguousContainer>
172 ArrayView(
const ContiguousContainer &container)
173 requires(std::is_same_v<
174 std::remove_cv_t<ElementType>,
175 std::remove_cv_t<typename ContiguousContainer::value_type>> &&
176 std::is_const_v<ElementType> &&
196 template <
typename ContiguousContainer>
197 ArrayView(ContiguousContainer &container)
198 requires(std::is_same_v<
199 std::remove_cv_t<ElementType>,
200 std::remove_cv_t<typename ContiguousContainer::value_type>> &&
223 template <
typename ContiguousContainer,
224 typename =
decltype(std::data(std::declval<ContiguousContainer>())),
225 typename =
decltype(std::size(std::declval<ContiguousContainer>())),
226 typename = std::enable_if_t<
228 std::remove_cv_t<ElementType>,
229 std::remove_cv_t<typename ContiguousContainer::value_type>> &&
230 std::is_const_v<ElementType>>>
250 template <
typename ContiguousContainer,
251 typename =
decltype(std::data(std::declval<ContiguousContainer>())),
252 typename =
decltype(std::size(std::declval<ContiguousContainer>())),
253 typename = std::enable_if_t<std::is_same_v<
254 std::remove_cv_t<ElementType>,
255 std::remove_cv_t<typename ContiguousContainer::value_type>>>>
274 template <std::
size_t N>
321 const std::initializer_list<std::remove_cv_t<value_type>> &initializer_list)
474 operator[](const
std::
size_t i) const;
488 friend class
ArrayView<const ElementType, MemorySpaceType>;
496template <typename ElementType, typename MemorySpaceType>
504template <
typename ElementType,
typename MemorySpaceType>
521template <
typename ElementType,
typename MemorySpaceType>
524 const std::size_t n_elements)
529 this->starting_element = starting_element;
531 this->starting_element =
nullptr;
535 this->starting_element = starting_element;
537 this->n_elements = n_elements;
542template <
typename ElementType,
typename MemorySpaceType>
544 : starting_element(&element)
550template <
typename ElementType,
typename MemorySpaceType>
552 const ArrayView<std::remove_cv_t<value_type>, MemorySpaceType> &view)
553 : starting_element(view.starting_element)
554 , n_elements(view.n_elements)
558#ifdef DEAL_II_HAVE_CXX20
560template <
typename ElementType,
typename MemorySpaceType>
561template <
typename ContiguousContainer>
563 const ContiguousContainer &container)
564 requires(std::is_same_v<
565 std::remove_cv_t<ElementType>,
566 std::remove_cv_t<typename ContiguousContainer::value_type>> &&
567 std::is_const_v<ElementType> &&
575template <
typename ElementType,
typename MemorySpaceType>
576template <
typename ContiguousContainer>
578 ContiguousContainer &container)
579 requires(std::is_same_v<
580 std::remove_cv_t<ElementType>,
581 std::remove_cv_t<typename ContiguousContainer::value_type>> &&
590template <
typename ElementType,
typename MemorySpaceType>
591template <
typename ContiguousContainer,
typename,
typename,
typename>
593 const ContiguousContainer &container)
600template <
typename ElementType,
typename MemorySpaceType>
601template <
typename ContiguousContainer,
typename,
typename,
typename>
603 ContiguousContainer &container)
612template <
typename ElementType,
typename MemorySpaceType>
613template <std::
size_t N>
615 ElementType (&array)[N])
620template <
typename ElementType,
typename MemorySpaceType>
622 const std::initializer_list<std::remove_cv_t<value_type>> &initializer)
630template <
typename ElementType,
typename MemorySpaceType>
635 return (other_view.
data() == starting_element) &&
636 (other_view.
size() == n_elements);
641template <
typename ElementType,
typename MemorySpaceType>
644 const ArrayView<std::remove_cv_t<value_type>, MemorySpaceType> &other_view)
647 return (other_view.data() == starting_element) &&
648 (other_view.size() == n_elements);
653template <
typename ElementType,
typename MemorySpaceType>
658 return !(*
this == other_view);
663template <
typename ElementType,
typename MemorySpaceType>
671 return starting_element;
676template <
typename ElementType,
typename MemorySpaceType>
679 const ArrayView<std::remove_cv_t<value_type>, MemorySpaceType> &other_view)
682 return !(*
this == other_view);
687template <
typename ElementType,
typename MemorySpaceType>
696template <
typename ElementType,
typename MemorySpaceType>
700 return n_elements == 0;
705template <
typename ElementType,
typename MemorySpaceType>
709 return starting_element;
714template <
typename ElementType,
typename MemorySpaceType>
718 return starting_element + n_elements;
723template <
typename ElementType,
typename MemorySpaceType>
727 return starting_element;
732template <
typename ElementType,
typename MemorySpaceType>
736 return starting_element + n_elements;
741template <
typename ElementType,
typename MemorySpaceType>
747 return *(starting_element + i);
474 operator[](const
std::
size_t i) const; {
…}
757template <
typename ElementType, std::
size_t str
ide = 1>
806 data() const noexcept;
821 operator[](const
std::
size_t i) const;
838template <typename ElementType,
std::
size_t stride>
844 return *(this->starting_element + stride * i);
849template <
typename ElementType, std::
size_t str
ide>
861template <
typename ElementType, std::
size_t str
ide>
870template <
typename ElementType, std::
size_t str
ide>
879template <
typename ElementType, std::
size_t str
ide>
892 namespace ArrayViewHelper
899 template <
class Iterator>
901 is_contiguous(
const Iterator &
first,
const Iterator &last)
903 const auto n = std::distance(
first, last);
904 for (std::decay_t<
decltype(n)> i = 0; i < n; ++i)
905 if (std::addressof(*(std::next(
first, i))) !=
906 std::next(std::addressof(*
first), i))
924 is_contiguous(T *, T *)
950template <
typename Iterator,
typename MemorySpaceType = MemorySpace::Host>
952 std::remove_reference_t<typename std::iterator_traits<Iterator>::reference>,
957 std::is_same_v<typename std::iterator_traits<Iterator>::iterator_category,
958 typename std::random_access_iterator_tag>
959#ifdef DEAL_II_HAVE_CXX20
961 std::is_same_v<typename std::iterator_traits<Iterator>::iterator_category,
962 typename std::contiguous_iterator_tag>
965 "The provided iterator needs to be a random access iterator.");
968 "The beginning of the array view needs to be before the end."));
969 Assert(internal::ArrayViewHelper::is_contiguous(begin, end),
970 ExcMessage(
"The provided range isn't contiguous in memory!"));
973 std::remove_reference_t<typename std::iterator_traits<Iterator>::reference>,
974 MemorySpaceType>(std::addressof(*begin), end - begin);
988template <
typename ElementType,
typename MemorySpaceType = MemorySpace::Host>
994 "The beginning of the array view needs to be before the end."));
1010template <
typename Number,
typename MemorySpaceType>
1029template <
typename Number,
typename MemorySpaceType>
1051template <
typename ElementType,
int N>
1074template <
typename ElementType>
1097template <
typename ElementType>
1120template <
typename ElementType>
1143template <
typename ElementType>
1171template <
typename ElementType>
1174 const std::size_t starting_index,
1175 const std::size_t size_of_view)
1177 Assert(starting_index + size_of_view <= vector.size(),
1178 ExcMessage(
"The starting index and size of the view you want to "
1179 "create would lead to a view that extends beyond the end "
1180 "of the given vector."));
1205template <
typename ElementType>
1208 const std::size_t starting_index,
1209 const std::size_t size_of_view)
1211 Assert(starting_index + size_of_view <= vector.size(),
1212 ExcMessage(
"The starting index and size of the view you want to "
1213 "create would lead to a view that extends beyond the end "
1214 "of the given vector."));
1227template <
typename ElementType>
1243template <
typename ElementType>
1259template <
typename ElementType>
1262 const std::size_t starting_index,
1263 const std::size_t size_of_view)
1265 Assert(starting_index + size_of_view <= vector.
size(),
1266 ExcMessage(
"The starting index and size of the view you want to "
1267 "create would lead to a view that extends beyond the end "
1268 "of the given vector."));
1281template <
typename ElementType>
1284 const std::size_t starting_index,
1285 const std::size_t size_of_view)
1287 Assert(starting_index + size_of_view <= vector.
size(),
1288 ExcMessage(
"The starting index and size of the view you want to "
1289 "create would lead to a view that extends beyond the end "
1290 "of the given vector."));
1310template <
typename ElementType, std::
size_t N>
1333template <
typename ElementType, std::
size_t N>
1358template <
typename ElementType>
1385template <
typename ElementType>
1410template <
typename ElementType>
1435template <
typename ElementType>
1460template <
typename ElementType>
1485template <
typename ElementType>
1515template <
typename ElementType>
1520 const std::size_t size_of_view)
1524 Assert(starting_column + size_of_view <= table.size()[1],
1525 ExcMessage(
"The starting index and size of the view you want to "
1526 "create would lead to a view that extends beyond the end "
1527 "of a column of the given table."));
1552template <
typename ElementType>
1557 const std::size_t size_of_view)
1561 Assert(starting_column + size_of_view <= table.size()[1],
1562 ExcMessage(
"The starting index and size of the view you want to "
1563 "create would lead to a view that extends beyond the end "
1564 "of a column of the given table."));
1581template <
typename Container>
auto make_const_array_view(const Container &container) -> decltype(make_array_view(container))
ArrayView< std::remove_reference_t< typename std::iterator_traits< Iterator >::reference >, MemorySpaceType > make_array_view(const Iterator begin, const Iterator end)
ArrayView(ContiguousContainer &container)
ArrayView< const ElementType > make_array_view(const Vector< ElementType > &vector)
ArrayView(value_type &element)
bool operator!=(const ArrayView< std::remove_cv_t< value_type >, MemorySpaceType > &other_view) const
ArrayView< Number, MemorySpaceType > make_array_view(ArrayView< Number, MemorySpaceType > &array_view)
ArrayView(const ArrayView< std::remove_cv_t< value_type >, MemorySpaceType > &view)
value_type & operator[](const std::size_t i) const
ArrayView< const ElementType > make_array_view(const LAPACKFullMatrix< ElementType > &matrix)
ArrayView< ElementType > make_array_view(std::array< ElementType, N > &array)
bool operator==(const ArrayView< std::remove_cv_t< value_type >, MemorySpaceType > &other_view) const
ArrayView< ElementType > make_array_view(LAPACKFullMatrix< ElementType > &matrix)
ArrayView< ElementType > make_array_view(ElementType(&array)[N])
ArrayView< ElementType, MemorySpaceType > make_array_view(ElementType *const begin, ElementType *const end)
const_iterator cend() const
ArrayView(const ContiguousContainer &container)
ArrayView< const ElementType > make_array_view(const std::vector< ElementType > &vector, const std::size_t starting_index, const std::size_t size_of_view)
ArrayView< const ElementType > make_array_view(const Table< 2, ElementType > &table)
ArrayView< const ElementType > make_array_view(const Table< 2, ElementType > &table, const typename Table< 2, ElementType >::size_type row, const typename Table< 2, ElementType >::size_type starting_column, const std::size_t size_of_view)
ArrayView< ElementType > make_array_view(std::vector< ElementType > &vector)
bool operator==(const ArrayView< const value_type, MemorySpaceType > &other_view) const
ArrayView< ElementType > make_array_view(std::vector< ElementType > &vector, const std::size_t starting_index, const std::size_t size_of_view)
bool operator!=(const ArrayView< const value_type, MemorySpaceType > &other_view) const
const_iterator cbegin() const
ArrayView(value_type(&array)[N])
value_type * data() const noexcept
ArrayView< ElementType > make_array_view(Table< 2, ElementType > &table, const typename Table< 2, ElementType >::size_type row, const typename Table< 2, ElementType >::size_type starting_column, const std::size_t size_of_view)
void reinit(value_type *starting_element, const std::size_t n_elements)
ArrayView< ElementType > make_array_view(Table< 2, ElementType > &table)
value_type * starting_element
ArrayView(const std::initializer_list< std::remove_cv_t< value_type > > &initializer_list)
ArrayView(value_type *starting_element, const std::size_t n_elements)
ArrayView< const Number, MemorySpaceType > make_array_view(const ArrayView< Number, MemorySpaceType > &array_view)
ArrayView< const ElementType > make_array_view(const Table< 2, ElementType > &table, const typename Table< 2, ElementType >::size_type row)
ArrayView< const ElementType > make_array_view(const AlignedVector< ElementType > &vector, const std::size_t starting_index, const std::size_t size_of_view)
ArrayView< const ElementType > make_array_view(const AlignedVector< ElementType > &vector)
const ElementType * const_iterator
ArrayView< ElementType > make_array_view(Vector< ElementType > &vector)
ArrayView< ElementType > make_array_view(Table< 2, ElementType > &table, const typename Table< 2, ElementType >::size_type row)
ArrayView< const ElementType > make_array_view(const std::vector< ElementType > &vector)
ArrayView< ElementType > make_array_view(AlignedVector< ElementType > &vector, const std::size_t starting_index, const std::size_t size_of_view)
ArrayView< const ElementType > make_array_view(const std::array< ElementType, N > &array)
ArrayView< std::remove_reference_t< typename std::iterator_traits< Iterator >::reference >, MemorySpaceType > make_array_view(const Iterator begin, const Iterator end)
ArrayView< ElementType > make_array_view(AlignedVector< ElementType > &vector)
StridedArrayView(value_type *starting_element, const std::size_t n_elements)
value_type * starting_element
value_type * data() const noexcept
virtual size_type size() const override
constexpr LibraryBuildMode library_build_mode
#define DEAL_II_NAMESPACE_OPEN
constexpr bool running_in_debug_mode()
#define DEAL_II_CXX20_REQUIRES(condition)
#define DEAL_II_HOST_DEVICE
#define DEAL_II_NAMESPACE_CLOSE
#define Assert(cond, exc)
#define AssertIndexRange(index, range)
static ::ExceptionBase & ExcMessage(std::string arg1)
std::vector< index_type > data