29#ifndef _GLIBCXX_MDSPAN
30#define _GLIBCXX_MDSPAN 1
33#pragma GCC system_header
41#define __glibcxx_want_mdspan
42#define __glibcxx_want_aligned_accessor
43#define __glibcxx_want_hardened_mdspan
44#define __glibcxx_want_submdspan
47#if __glibcxx_aligned_accessor
51#if __glibcxx_submdspan
55#if __cplusplus > 202302L
59#ifdef __glibcxx_mdspan
61namespace std _GLIBCXX_VISIBILITY(default)
63_GLIBCXX_BEGIN_NAMESPACE_VERSION
67 __all_static(std::span<const size_t> __extents)
69 for(
auto __ext : __extents)
70 if (__ext == dynamic_extent)
76 __all_dynamic(std::span<const size_t> __extents)
78 for(
auto __ext : __extents)
79 if (__ext != dynamic_extent)
84 template<
typename _IndexType,
typename _OIndexTypeRef>
86 __index_type_cast(_OIndexTypeRef&& __other)
90 using _OIndexType = std::remove_cvref_t<_OIndexTypeRef>;
91 if constexpr (std::is_integral_v<_OIndexType>)
93 constexpr _IndexType __index_type_max
94 = __gnu_cxx::__int_traits<_IndexType>::__max;
95 constexpr _OIndexType __oindex_type_max
96 = __gnu_cxx::__int_traits<_OIndexType>::__max;
98 if constexpr (__index_type_max < __oindex_type_max)
99 __glibcxx_assert(cmp_less_equal(__other, __index_type_max));
101 if constexpr (std::is_signed_v<_OIndexType>)
102 __glibcxx_assert(__other >= 0);
103 return static_cast<_IndexType
>(__other);
110 if constexpr (std::is_signed_v<_IndexType>)
111 __glibcxx_assert(__ret >= 0);
116 template<array _Extents>
120 static constexpr size_t _S_rank = _Extents.size();
128 static constexpr size_t
129 _S_dynamic_index(
size_t __r)
noexcept
130 {
return _S_dynamic_index_data[__r]; }
132 static constexpr auto _S_dynamic_index_data = []
consteval
134 array<size_t, _S_rank+1> __ret;
136 for (
size_t __i = 0; __i < _S_rank; ++__i)
139 __dyn += (_Extents[__i] == dynamic_extent);
141 __ret[_S_rank] = __dyn;
145 static constexpr size_t _S_rank_dynamic = _S_dynamic_index(_S_rank);
149 static constexpr size_t
150 _S_dynamic_index_inv(
size_t __r)
noexcept
151 {
return _S_dynamic_index_inv_data[__r]; }
153 static constexpr auto _S_dynamic_index_inv_data = []
consteval
155 array<size_t, _S_rank_dynamic> __ret;
156 for (
size_t __i = 0, __r = 0; __i < _S_rank; ++__i)
157 if (_Extents[__i] == dynamic_extent)
162 static constexpr size_t
163 _S_static_extent(
size_t __r)
noexcept
164 {
return _Extents[__r]; }
167 template<array _Extents>
168 requires (__all_dynamic<_Extents>())
169 class _StaticExtents<_Extents>
172 static constexpr size_t _S_rank = _Extents.size();
174 static constexpr size_t
175 _S_dynamic_index(
size_t __r)
noexcept
178 static constexpr size_t _S_rank_dynamic = _S_rank;
180 static constexpr size_t
181 _S_dynamic_index_inv(
size_t __k)
noexcept
184 static constexpr size_t
185 _S_static_extent(
size_t)
noexcept
186 {
return dynamic_extent; }
189 template<
typename _IndexType, array _Extents>
190 class _ExtentsStorage :
public _StaticExtents<_Extents>
193 using _Base = _StaticExtents<_Extents>;
196 using _Base::_S_rank;
197 using _Base::_S_rank_dynamic;
198 using _Base::_S_dynamic_index;
199 using _Base::_S_dynamic_index_inv;
200 using _Base::_S_static_extent;
202 static constexpr bool
203 _S_is_dynamic(
size_t __r)
noexcept
205 if constexpr (__all_static(_Extents))
207 else if constexpr (__all_dynamic(_Extents))
210 return _Extents[__r] == dynamic_extent;
213 template<
typename _OIndexType>
214 static constexpr _IndexType
215 _S_int_cast(
const _OIndexType& __other)
noexcept
216 {
return _IndexType(__other); }
219 _M_extent(
size_t __r)
const noexcept
221 if (_S_is_dynamic(__r))
222 return _M_dyn_exts[_S_dynamic_index(__r)];
224 return _S_static_extent(__r);
227 template<
size_t _OtherRank,
typename _GetOtherExtent>
228 static constexpr bool
229 _S_is_compatible_extents(_GetOtherExtent __get_extent)
noexcept
231 if constexpr (_OtherRank == _S_rank)
232 for (
size_t __i = 0; __i < _S_rank; ++__i)
233 if (!_S_is_dynamic(__i)
234 && !cmp_equal(_Extents[__i], _S_int_cast(__get_extent(__i))))
239 template<
size_t _OtherRank,
typename _GetOtherExtent>
241 _M_init_dynamic_extents(_GetOtherExtent __get_extent)
noexcept
243 __glibcxx_assert(_S_is_compatible_extents<_OtherRank>(__get_extent));
244 for (
size_t __i = 0; __i < _S_rank_dynamic; ++__i)
247 if constexpr (_OtherRank != _S_rank_dynamic)
248 __di = _S_dynamic_index_inv(__i);
249 _M_dyn_exts[__i] = _S_int_cast(__get_extent(__di));
254 _ExtentsStorage() noexcept = default;
256 template<typename _OIndexType, array _OExtents>
258 _ExtentsStorage(const _ExtentsStorage<_OIndexType, _OExtents>&
261 _M_init_dynamic_extents<_S_rank>([&__other](
size_t __i)
262 {
return __other._M_extent(__i); });
265 template<
typename _OIndexType,
size_t _Nm>
267 _ExtentsStorage(span<const _OIndexType, _Nm> __exts)
noexcept
269 _M_init_dynamic_extents<_Nm>(
270 [&__exts](
size_t __i) ->
const _OIndexType&
271 {
return __exts[__i]; });
274 static constexpr const array<size_t, _S_rank>&
275 _S_static_extents() noexcept
278 constexpr span<const _IndexType>
279 _M_dynamic_extents(
size_t __begin,
size_t __end)
const noexcept
280 requires (_Extents.size() > 0)
282 return {_M_dyn_exts + _S_dynamic_index(__begin),
283 _S_dynamic_index(__end) - _S_dynamic_index(__begin)};
287 using _Storage = __array_traits<_IndexType, _S_rank_dynamic>::_Type;
288 [[no_unique_address]] _Storage _M_dyn_exts{};
291 template<
typename _OIndexType,
typename _SIndexType>
292 concept __valid_index_type =
293 is_convertible_v<_OIndexType, _SIndexType> &&
294 is_nothrow_constructible_v<_SIndexType, _OIndexType>;
296 template<
size_t _Extent,
typename _IndexType>
298 __valid_static_extent = _Extent == dynamic_extent
299 || _Extent <= __gnu_cxx::__int_traits<_IndexType>::__max;
301 template<
typename _Extents>
302 constexpr const array<size_t, _Extents::rank()>&
303 __static_extents() noexcept
304 {
return _Extents::_Storage::_S_static_extents(); }
306 template<
typename _Extents>
307 constexpr span<const size_t>
308 __static_extents(
size_t __begin,
size_t __end)
noexcept
310 const auto& __sta_exts = __static_extents<_Extents>();
311 return span<const size_t>(__sta_exts.data() + __begin, __end - __begin);
315 template<array _Extents>
316 constexpr auto __fwd_partial_prods = []
consteval
318 constexpr size_t __rank = _Extents.size();
319 std::array<size_t, __rank> __ret;
321 for (
size_t __r = 0; __r < __rank; ++__r)
324 if (
size_t __ext = _Extents[__r]; __ext != dynamic_extent)
331 template<array _Extents>
332 constexpr auto __rev_partial_prods = []
consteval
334 constexpr size_t __rank = _Extents.size();
335 std::array<size_t, __rank> __ret;
337 for (
size_t __r = __rank; __r > 0; --__r)
339 __ret[__r - 1] = __prod;
340 if (
size_t __ext = _Extents[__r - 1]; __ext != dynamic_extent)
346 template<
typename _Extents>
347 constexpr span<const typename _Extents::index_type>
348 __dynamic_extents(
const _Extents& __exts,
size_t __begin = 0,
349 size_t __end = _Extents::rank()) noexcept
350 {
return __exts._M_exts._M_dynamic_extents(__begin, __end); }
353#if __glibcxx_submdspan
356 explicit full_extent_t() =
default;
359 inline constexpr full_extent_t full_extent{};
361 template<
typename _OffsetType,
typename _ExtentType,
typename _Str
ideType>
364 static_assert(__is_signed_or_unsigned_integer<_OffsetType>::value
365 || __detail::__integral_constant_like<_OffsetType>);
366 static_assert(__is_signed_or_unsigned_integer<_ExtentType>::value
367 || __detail::__integral_constant_like<_ExtentType>);
368 static_assert(__is_signed_or_unsigned_integer<_StrideType>::value
369 || __detail::__integral_constant_like<_StrideType>);
371 using offset_type = _OffsetType;
372 using extent_type = _ExtentType;
373 using stride_type = _StrideType;
375 [[no_unique_address]] offset_type offset{};
376 [[no_unique_address]] extent_type extent{};
377 [[no_unique_address]] stride_type stride{};
380 template<
typename _FirstType,
typename _LastType,
typename _Str
ideType = constant_wrapper<1zu>>
383 static_assert(__is_signed_or_unsigned_integer<_FirstType>::value
384 || __detail::__integral_constant_like<_FirstType>);
385 static_assert(__is_signed_or_unsigned_integer<_LastType>::value
386 || __detail::__integral_constant_like<_LastType>);
387 static_assert(__is_signed_or_unsigned_integer<_StrideType>::value
388 || __detail::__integral_constant_like<_StrideType>);
390 [[no_unique_address]] _FirstType first{};
391 [[no_unique_address]] _LastType last{};
392 [[no_unique_address]] _StrideType stride{};
395 template<
typename _Mapping>
396 struct submdspan_mapping_result
398 [[no_unique_address]] _Mapping mapping = _Mapping();
402 template<
typename _Tp>
403 constexpr bool __is_submdspan_mapping_result =
false;
405 template<
typename _Mapping>
406 constexpr bool __is_submdspan_mapping_result<submdspan_mapping_result<_Mapping>> =
true;
408 template<
typename _Mapping>
409 concept __submdspan_mapping_result = __is_submdspan_mapping_result<_Mapping>;
413 template<
typename _IndexType,
size_t... _Extents>
416 static_assert(__is_signed_or_unsigned_integer<_IndexType>::value,
417 "IndexType must be a signed or unsigned integer type");
419 (__mdspan::__valid_static_extent<_Extents, _IndexType> && ...),
420 "Extents must either be dynamic or representable as IndexType");
422 using _Storage = __mdspan::_ExtentsStorage<
423 _IndexType, array<size_t,
sizeof...(_Extents)>{_Extents...}>;
424 [[no_unique_address]] _Storage _M_exts;
427 using index_type = _IndexType;
429 using rank_type = size_t;
431 static constexpr rank_type
432 rank() noexcept {
return _Storage::_S_rank; }
434 static constexpr rank_type
435 rank_dynamic() noexcept {
return _Storage::_S_rank_dynamic; }
437 static constexpr size_t
438 static_extent(rank_type __r)
noexcept
440 __glibcxx_assert(__r < rank());
441 if constexpr (rank() == 0)
444 return _Storage::_S_static_extent(__r);
448 extent(rank_type __r)
const noexcept
450 __glibcxx_assert(__r < rank());
451 if constexpr (rank() == 0)
454 return _M_exts._M_extent(__r);
458 extents() noexcept = default;
461 static consteval
bool
462 _S_is_less_dynamic(
size_t __ext,
size_t __oext)
463 {
return (__ext != dynamic_extent) && (__oext == dynamic_extent); }
465 template<
typename _OIndexType,
size_t... _OExtents>
466 static consteval bool
469 return (_S_is_less_dynamic(_Extents, _OExtents) || ...)
470 || (__gnu_cxx::__int_traits<index_type>::__max
471 < __gnu_cxx::__int_traits<_OIndexType>::__max);
474 template<
size_t... _OExtents>
475 static consteval bool
476 _S_is_compatible_extents()
478 if constexpr (
sizeof...(_OExtents) != rank())
481 return ((_OExtents == dynamic_extent || _Extents == dynamic_extent
482 || _OExtents == _Extents) && ...);
486 template<
typename _OIndexType,
size_t... _OExtents>
487 requires (_S_is_compatible_extents<_OExtents...>())
488 constexpr explicit(_S_ctor_explicit<_OIndexType, _OExtents...>())
489 extents(
const extents<_OIndexType, _OExtents...>& __other) noexcept
490 : _M_exts(__other._M_exts)
493 template<__mdspan::__val
id_index_type<index_type>... _OIndexTypes>
494 requires (
sizeof...(_OIndexTypes) == rank()
495 ||
sizeof...(_OIndexTypes) == rank_dynamic())
496 constexpr explicit extents(_OIndexTypes... __exts) noexcept
497 : _M_exts(span<
const _IndexType,
sizeof...(_OIndexTypes)>(
498 initializer_list{
static_cast<_IndexType
>(
std::move(__exts))...}))
501 template<
typename _OIndexType,
size_t _Nm>
502 requires __mdspan::__valid_index_type<const _OIndexType&, index_type>
503 && (_Nm == rank() || _Nm == rank_dynamic())
504 constexpr explicit(_Nm != rank_dynamic())
505 extents(span<_OIndexType, _Nm> __exts) noexcept
506 : _M_exts(span<const _OIndexType, _Nm>(__exts))
509 template<
typename _OIndexType,
size_t _Nm>
510 requires __mdspan::__valid_index_type<const _OIndexType&, index_type>
511 && (_Nm == rank() || _Nm == rank_dynamic())
512 constexpr explicit(_Nm != rank_dynamic())
513 extents(
const array<_OIndexType, _Nm>& __exts) noexcept
514 : _M_exts(span<const _OIndexType, _Nm>(__exts))
517 template<
typename _OIndexType,
size_t... _OExtents>
518 friend constexpr bool
519 operator==(
const extents& __self,
520 const extents<_OIndexType, _OExtents...>& __other)
noexcept
522 if constexpr (!_S_is_compatible_extents<_OExtents...>())
526 auto __impl = [&__self, &__other]<
size_t... _Counts>(
528 {
return (cmp_equal(__self.extent(_Counts),
529 __other.extent(_Counts)) && ...); };
535 friend constexpr const array<size_t, rank()>&
536 __mdspan::__static_extents<extents>() noexcept;
538 friend constexpr span<const index_type>
539 __mdspan::__dynamic_extents<extents>(const extents&,
size_t,
size_t)
542 template<typename _OIndexType,
size_t... _OExtents>
543 friend class extents;
548 template<
typename _Tp,
size_t _Nm>
550 __contains_zero(span<_Tp, _Nm> __exts)
noexcept
552 for (
size_t __i = 0; __i < __exts.size(); ++__i)
553 if (__exts[__i] == 0)
558 template<
typename _Tp,
size_t _Nm>
560 __contains_zero(
const array<_Tp, _Nm>& __exts)
noexcept
561 {
return __contains_zero(span<const _Tp>(__exts)); }
563 template<
typename _Extents>
565 __empty(
const _Extents& __exts)
noexcept
567 if constexpr (__contains_zero(__static_extents<_Extents>()))
569 else if constexpr (_Extents::rank_dynamic() > 0)
570 return __contains_zero(__dynamic_extents(__exts));
575 template<
typename _Extents>
576 constexpr typename _Extents::index_type
577 __extents_prod(
const _Extents& __exts,
size_t __sta_prod,
size_t __begin,
578 size_t __end)
noexcept
583 size_t __ret = __sta_prod;
584 if constexpr (_Extents::rank_dynamic() > 0)
585 for (
auto __factor : __dynamic_extents(__exts, __begin, __end))
586 __ret *= size_t(__factor);
587 return static_cast<typename _Extents::index_type
>(__ret);
591 template<
typename _Extents>
592 constexpr typename _Extents::index_type
593 __fwd_prod(
const _Extents& __exts,
size_t __begin,
size_t __end)
noexcept
595 size_t __sta_prod = [__begin, __end] {
596 span<const size_t> __sta_exts
597 = __static_extents<_Extents>(__begin, __end);
599 for(
auto __ext : __sta_exts)
600 if (__ext != dynamic_extent)
604 return __extents_prod(__exts, __sta_prod, __begin, __end);
607 template<
typename _Extents>
608 constexpr typename _Extents::index_type
609 __fwd_prod(
const _Extents& __exts,
size_t __r)
noexcept
611 constexpr size_t __rank = _Extents::rank();
612 constexpr auto& __sta_exts = __static_extents<_Extents>();
613 if constexpr (__rank == 1)
615 else if constexpr (__rank == 2)
616 return __r == 0 ? 1 : __exts.extent(0);
617 else if constexpr (__all_dynamic(std::span(__sta_exts).first(__rank-1)))
618 return __extents_prod(__exts, 1, 0, __r);
621 size_t __sta_prod = __fwd_partial_prods<__sta_exts>[__r];
622 return __extents_prod(__exts, __sta_prod, 0, __r);
626 template<
typename _IndexType,
size_t _Nm>
628 __fwd_prod(span<const _IndexType, _Nm> __values)
630 _IndexType __ret = 1;
631 for(
auto __value : __values)
637 template<
typename _Extents>
638 constexpr typename _Extents::index_type
639 __rev_prod(
const _Extents& __exts,
size_t __r)
noexcept
641 constexpr size_t __rank = _Extents::rank();
642 constexpr auto& __sta_exts = __static_extents<_Extents>();
643 if constexpr (__rank == 1)
645 else if constexpr (__rank == 2)
646 return __r == 0 ? __exts.extent(1) : 1;
647 else if constexpr (__all_dynamic(std::span(__sta_exts).last(__rank-1)))
648 return __extents_prod(__exts, 1, __r + 1, __rank);
651 size_t __sta_prod = __rev_partial_prods<__sta_exts>[__r];
652 return __extents_prod(__exts, __sta_prod, __r + 1, __rank);
656 template<
typename _Extents>
657 constexpr typename _Extents::index_type
658 __size(
const _Extents& __exts)
noexcept
660 constexpr size_t __sta_prod = [] {
661 span<const size_t> __sta_exts = __static_extents<_Extents>();
663 for(
auto __ext : __sta_exts)
664 if (__ext != dynamic_extent)
668 return __extents_prod(__exts, __sta_prod, 0, _Extents::rank());
671 template<
typename _IndexType,
size_t... _Counts>
672 auto __build_dextents_type(integer_sequence<size_t, _Counts...>)
673 -> extents<_IndexType, ((void) _Counts, dynamic_extent)...>;
676 template<
typename _IndexType,
size_t _Rank>
677 using dextents =
decltype(__mdspan::__build_dextents_type<_IndexType>(
680#if __glibcxx_mdspan >= 202406L
681 template<
size_t _Rank,
typename _IndexType =
size_t>
682 using dims = dextents<_IndexType, _Rank>;
685 template<
typename... _Integrals>
686 requires (is_convertible_v<_Integrals, size_t> && ...)
687 explicit extents(_Integrals...) ->
688 extents<size_t, __detail::__maybe_static_ext<_Integrals>...>;
692 template<
typename _Extents>
698 template<
typename _Extents>
704 template<
typename _Extents>
708#ifdef __glibcxx_padded_layouts
709 template<
size_t _PaddingValue>
710 struct layout_left_padded
712 template<
typename _Extents>
716 template<
size_t _PaddingValue>
717 struct layout_right_padded
719 template<
typename _Extents>
726 template<
typename _Tp>
727 constexpr bool __is_extents =
false;
729 template<
typename _IndexType,
size_t... _Extents>
730 constexpr bool __is_extents<extents<_IndexType, _Extents...>> =
true;
732 template<
typename _Extents,
typename... _Indices>
733 constexpr typename _Extents::index_type
734 __linear_index_left(
const _Extents& __exts, _Indices... __indices)
737 using _IndexType =
typename _Extents::index_type;
738 _IndexType __res = 0;
739 if constexpr (
sizeof...(__indices) > 0)
741 _IndexType __mult = 1;
742 auto __update = [&, __pos = 0u](_IndexType __idx)
mutable
744 _GLIBCXX_DEBUG_ASSERT(cmp_less(__idx, __exts.extent(__pos)));
745 __res += __idx * __mult;
746 __mult *= __exts.extent(__pos);
749 (__update(__indices), ...);
754 template<
typename _IndexType>
756 __static_quotient(std::span<const size_t> __sta_exts,
757 _IndexType __nom = __gnu_cxx::__int_traits<_IndexType>::__max)
759 for (
auto __factor : __sta_exts)
761 if (__factor != dynamic_extent)
762 __nom /= _IndexType(__factor);
769 template<
typename _Extents,
770 typename _IndexType =
typename _Extents::index_type>
771 requires __is_extents<_Extents>
773 __static_quotient(_IndexType __nom
774 = __gnu_cxx::__int_traits<_IndexType>::__max)
776 std::span<const size_t> __sta_exts = __static_extents<_Extents>();
777 return __static_quotient<_IndexType>(__sta_exts, __nom);
780 template<
typename _Extents>
782 __is_representable_extents(
const _Extents& __exts)
noexcept
784 using _IndexType = _Extents::index_type;
786 if constexpr (__contains_zero(__static_extents<_Extents>()))
790 constexpr auto __sta_quo = __static_quotient<_Extents>();
791 if constexpr (_Extents::rank_dynamic() == 0)
792 return __sta_quo != 0;
795 auto __dyn_exts = __dynamic_extents(__exts);
796 if (__contains_zero(__dyn_exts))
799 if constexpr (__sta_quo == 0)
803 auto __dyn_quo = _IndexType(__sta_quo);
804 for (
auto __factor : __dyn_exts)
806 __dyn_quo /= __factor;
816 template<
typename _Extents,
typename _IndexType>
817 concept __representable_size = _Extents::rank_dynamic() != 0
818 || __contains_zero(__static_extents<_Extents>())
819 || (__static_quotient<_Extents, _IndexType>() != 0);
821 template<
typename _Layout,
typename _Mapping>
822 concept __mapping_of =
823 is_same_v<
typename _Layout::template mapping<
824 typename _Mapping::extents_type>,
827 template<
template<
size_t>
typename _Layout,
typename _Mapping>
828 concept __padded_mapping_of = __mapping_of<
829 _Layout<_Mapping::padding_value>, _Mapping>;
831#ifdef __glibcxx_padded_layouts
832 template<
typename _Mapping>
833 constexpr bool __is_left_padded_mapping = __padded_mapping_of<
834 layout_left_padded, _Mapping>;
836 template<
typename _Mapping>
837 constexpr bool __is_right_padded_mapping = __padded_mapping_of<
838 layout_right_padded, _Mapping>;
840 template<
typename _Mapping>
841 constexpr bool __is_padded_mapping = __is_left_padded_mapping<_Mapping>
842 || __is_right_padded_mapping<_Mapping>;
845 template<
typename _PaddedMapping>
847 __get_static_stride()
848 {
return _PaddedMapping::_PaddedStorage::_S_static_stride; }
850 template<
typename _Mapping>
851 concept __standardized_mapping = __mapping_of<layout_left, _Mapping>
852 || __mapping_of<layout_right, _Mapping>
853 || __mapping_of<layout_stride, _Mapping>
854#ifdef __glibcxx_padded_layouts
855 || __is_left_padded_mapping<_Mapping>
856 || __is_right_padded_mapping<_Mapping>
861 class __internal_ctor
864 template<
typename _Mapping>
865 constexpr typename _Mapping::index_type
866 __offset(
const _Mapping& __m)
noexcept
868 using _IndexType =
typename _Mapping::index_type;
869 constexpr auto __rank = _Mapping::extents_type::rank();
871 if constexpr (__standardized_mapping<_Mapping>)
873 else if (__empty(__m.extents()))
877 auto __impl = [&__m]<
size_t... _Counts>(
index_sequence<_Counts...>)
878 {
return __m(((
void) _Counts, _IndexType(0))...); };
879 return __impl(make_index_sequence<__rank>());
883#ifdef __glibcxx_submdspan
884 template<
typename _Tp>
885 constexpr bool __is_extent_slice =
false;
887 template<
typename _OffsetType,
typename _ExtentType,
typename _Str
ideType>
888 constexpr bool __is_extent_slice<extent_slice<_OffsetType,
889 _ExtentType, _StrideType>> =
true;
891 template<
typename _Tp>
892 constexpr bool __is_range_slice =
false;
894 template<
typename _FirstType,
typename _LastType,
typename _Str
ideType>
895 constexpr bool __is_range_slice<range_slice<_FirstType,
896 _LastType, _StrideType>> =
true;
898 template<
typename _IndexType,
typename _OIndexType>
900 __is_representable_integer(_OIndexType __value)
902 constexpr auto __min = __gnu_cxx::__int_traits<_IndexType>::__min;
903 constexpr auto __max = __gnu_cxx::__int_traits<_IndexType>::__max;
904 return std::cmp_less_equal(__min, __value)
905 && std::cmp_less_equal(__value, __max);
908 template<
size_t _Index,
typename _Extents>
910 __extract_extent(
const _Extents& __exts)
912 using _IndexType =
typename _Extents::index_type;
913 return extents<_IndexType, _Extents::static_extent(_Index)>{
914 __exts.extent(_Index)};
917 template<
typename _Slice,
typename _IndexType>
918 concept __acceptable_slice_type = same_as<_Slice, full_extent_t>
919 || same_as<_Slice, _IndexType> || __is_constant_wrapper_v<_Slice>
920 || __is_extent_slice<_Slice>;
922 template<
typename _IndexType,
typename... _Slices>
926 return (
static_cast<size_t>(!convertible_to<_Slices, _IndexType>)
930 template<
typename _IndexType,
typename... _Slices>
934 constexpr auto __rank =
sizeof...(_Slices);
935 constexpr auto __sub_rank = __subrank<_IndexType, _Slices...>();
936 auto __map = std::array<size_t, __sub_rank>{};
937 auto __is_int_like = std::array<bool, __rank>{
938 convertible_to<_Slices, _IndexType>...};
941 for (
size_t __k = 0; __k < __rank; ++__k)
942 if (!__is_int_like[__k])
947 template<
typename _Slice>
949 __slice_begin(_Slice __slice)
951 if constexpr (same_as<_Slice, full_extent_t>)
953 else if constexpr (__is_extent_slice<_Slice>)
954 return __slice.offset;
959 template<
typename _Mapping,
typename... _Slices>
961 __suboffset(
const _Mapping& __mapping,
const _Slices&... __slices)
963 using _IndexType =
typename _Mapping::index_type;
964 auto __any_past_the_end = [&]<
size_t... _Is>(
index_sequence<_Is...>)
966 auto __is_past_the_end = [](
const auto& __slice,
const auto& __ext)
968 using _Slice = remove_cvref_t<
decltype(__slice)>;
969 if constexpr (is_convertible_v<_Slice, _IndexType>)
971 else if constexpr (same_as<_Slice, full_extent_t>
972 && __ext.static_extent(0) != 0
973 && __ext.static_extent(0) != dynamic_extent)
976 return __mdspan::__slice_begin(__slice) == __ext.extent(0);
979 const auto& __exts = __mapping.extents();
980 return ((__is_past_the_end(__slices...[_Is],
981 __mdspan::__extract_extent<_Is>(__exts))) || ...);
984 if constexpr ((same_as<_Slices, full_extent_t> && ...))
985 return __mdspan::__offset(__mapping);
988 return __mapping.required_span_size();
989 return __mapping(__mdspan::__slice_begin(__slices)...);
992 template<
typename _IndexType,
size_t _Extent,
typename _Slice>
994 __static_slice_extent()
996 if constexpr (same_as<_Slice, full_extent_t>)
998 else if constexpr (same_as<_Slice, constant_wrapper<_IndexType(0)>>)
1000 else if constexpr (__is_constant_wrapper_v<typename _Slice::extent_type>)
1001 return _Slice::extent_type::value;
1003 return dynamic_extent;
1006 template<
size_t _K,
typename _Extents,
typename _Slice>
1007 constexpr typename _Extents::index_type
1008 __dynamic_slice_extent(
const _Extents& __exts, _Slice __slice)
1010 if constexpr (__is_extent_slice<_Slice>)
1011 return __slice.extent;
1013 return __exts.extent(_K);
1016 template<
typename _IndexType,
size_t... _Extents,
typename... _Slices>
1017 requires (
sizeof...(_Slices) ==
sizeof...(_Extents))
1019 __subextents(
const extents<_IndexType, _Extents...>& __exts,
1020 _Slices... __slices)
1022 constexpr auto __inv_map = __mdspan::__inv_map_rank<_IndexType, _Slices...>();
1025 using _SubExts = extents<_IndexType,
1026 __mdspan::__static_slice_extent<_IndexType,
1027 _Extents...[__inv_map[_Indices]],
1028 _Slices...[__inv_map[_Indices]]>()...>;
1029 if constexpr (_SubExts::rank_dynamic() == 0)
1033 using _StaticSubExtents = __mdspan::_StaticExtents<
1034 __mdspan::__static_extents<_SubExts>()>;
1037 constexpr auto __slice_idx = [__inv_map](
size_t __i)
consteval
1039 return __inv_map[_StaticSubExtents::_S_dynamic_index_inv(__i)];
1042 return _SubExts{__mdspan::__dynamic_slice_extent<__slice_idx(_Is)>(
1043 __exts, __slices...[__slice_idx(_Is)])...};
1045 constexpr auto __dyn_subrank = _SubExts::rank_dynamic();
1053 enum class _LayoutSide
1060 template<
typename _Mapping>
1061 consteval _LayoutSide
1064 if constexpr (__is_left_padded_mapping<_Mapping>
1065 || __mapping_of<layout_left, _Mapping>)
1066 return _LayoutSide::__left;
1067 if constexpr (__is_right_padded_mapping<_Mapping>
1068 || __mapping_of<layout_right, _Mapping>)
1069 return _LayoutSide::__right;
1071 return _LayoutSide::__unknown;
1074 template<_LayoutS
ide _S
ide,
size_t _Rank>
1075 struct _StridesTrait
1077 static constexpr const _LayoutSide _S_side = _Side;
1079 static constexpr size_t
1080 _S_idx(
size_t __k)
noexcept
1082 if constexpr (_Side == _LayoutSide::__left)
1085 return _Rank - 1 - __k;
1090 template<
typename _Mapping>
1091 static constexpr typename _Mapping::index_type
1092 _S_padded_extent(
const _Mapping& __mapping,
size_t __k)
1095 return __mapping.stride(_S_idx(1));
1097 return __mapping.extents().extent(_S_idx(__k));
1100 template<
typename _IndexType,
typename... _Slices>
1101 static consteval auto
1104 static_assert(_Side != _LayoutSide::__unknown);
1107 return __mdspan::__inv_map_rank<_IndexType, _Slices...[_S_idx(_Is)]...>();
1113 template<
typename _SubExts,
typename _Mapping,
typename... _Slices>
1115 __substrides_generic(
const _Mapping& __mapping,
const _Slices&... __slices)
1117 using _IndexType =
typename _Mapping::index_type;
1118 if constexpr (_SubExts::rank() == 0)
1119 return array<_IndexType, _SubExts::rank()>{};
1122 auto __stride = [&__mapping](
size_t __k,
auto __slice) -> _IndexType
1124 if constexpr (__is_extent_slice<
decltype(__slice)>)
1125 if (__slice.extent > 1)
1126 return __mapping.stride(__k) * __slice.stride;
1127 return __mapping.stride(__k);
1132 constexpr auto __inv_map
1133 = __mdspan::__inv_map_rank<_IndexType, _Slices...>();
1134 return array<_IndexType, _SubExts::rank()>{
1135 __stride(__inv_map[_Is], __slices...[__inv_map[_Is]])...};
1141 template<
typename _SubExts,
typename _Mapping,
typename... _Slices>
1143 __substrides_standardized(
const _Mapping& __mapping,
1144 const _Slices&... __slices)
1146 using _IndexType =
typename _Mapping::index_type;
1147 using _Trait = _StridesTrait<__mapping_side<_Mapping>(),
1148 _Mapping::extents_type::rank()>;
1149 using _SubTrait = _StridesTrait<__mapping_side<_Mapping>(), _SubExts::rank()>;
1151 constexpr size_t __sub_rank = _SubExts::rank();
1153 std::array<_IndexType, __sub_rank> __ret;
1154 if constexpr (__sub_rank > 0)
1156 constexpr auto __inv_map
1157 = _Trait::template _S_inv_map<_IndexType, _Slices...>();
1161 size_t __stride = 1;
1162 auto __body = [&](
size_t __k,
auto __slice)
1164 for (
size_t __i = __i0; __i < __inv_map[__k]; ++__i)
1165 __stride *= _Trait::_S_padded_extent(__mapping, __i);
1167 size_t __krev = _SubTrait::_S_idx(__k);
1168 if constexpr (__is_extent_slice<
decltype(__slice)>)
1170 if (__slice.extent > 1)
1171 __ret[__krev] = __stride * __slice.stride;
1173 __ret[__krev] = __stride;
1176 __ret[__krev] = __stride;
1178 __i0 = __inv_map[__k];
1181 ((__body(_Ks, __slices...[_Trait::_S_idx(__inv_map[_Ks])])),...);
1189 template<
typename _SubExts,
typename _Mapping,
typename... _Slices>
1191 __substrides(
const _Mapping& __mapping,
const _Slices&... __slices)
1193 if constexpr (__mdspan::__mapping_side<_Mapping>() == _LayoutSide::__unknown)
1194 return __mdspan::__substrides_generic<_SubExts>(__mapping, __slices...);
1196 return __mdspan::__substrides_standardized<_SubExts>(__mapping, __slices...);
1199 template<
typename _Slice>
1200 concept __is_unit_stride_slice = (__mdspan::__is_extent_slice<_Slice>
1201 && __is_constant_wrapper_v<typename _Slice::stride_type>
1202 && _Slice::stride_type::value == 1)
1203 || std::same_as<_Slice, full_extent_t>;
1209 enum class _SliceKind
1212 __unit_stride_slice,
1217 template<
typename _Slice>
1218 consteval _SliceKind
1221 if constexpr (std::same_as<_Slice, full_extent_t>)
1222 return _SliceKind::__full;
1223 else if constexpr (__mdspan::__is_extent_slice<_Slice>)
1225 if constexpr (__mdspan::__is_unit_stride_slice<_Slice>)
1226 return _SliceKind::__unit_stride_slice;
1228 return _SliceKind::__extent_slice;
1231 return _SliceKind::__collapsing;
1234 template<
typename... _Slices>
1235 consteval array<_SliceKind,
sizeof...(_Slices)>
1236 __make_slice_kind_array()
1238 return array<_SliceKind,
sizeof...(_Slices)>{
1239 __mdspan::__make_slice_kind<_Slices>()...};
1245 __is_block(span<const _SliceKind> __slice_kinds,
size_t __block_size)
1247 if (__block_size == 0)
1250 if (__block_size > __slice_kinds.size())
1253 for (
size_t __i = 0; __i < __block_size - 1; ++__i)
1254 if (__slice_kinds[__i] != _SliceKind::__full)
1257 auto __last = __slice_kinds[__block_size - 1];
1258 return __last == _SliceKind::__full
1259 || __last == _SliceKind::__unit_stride_slice;
1264 static consteval size_t
1265 __padded_block_begin_generic(span<const _SliceKind> __slice_kinds,
1268 if (__slice_kinds[0] != _SliceKind::__full
1269 && __slice_kinds[0] != _SliceKind::__unit_stride_slice)
1270 return dynamic_extent;
1271 else if (__slice_kinds.size() == 1)
1272 return dynamic_extent;
1276 while(__u < __slice_kinds.size()
1277 && __slice_kinds[__u] == _SliceKind::__collapsing)
1280 if (__mdspan::__is_block(__slice_kinds.subspan(__u), __sub_rank -1))
1282 return dynamic_extent;
1286 template<_LayoutS
ide _S
ide,
size_t _Nm>
1287 static consteval size_t
1288 __padded_block_begin(span<const _SliceKind, _Nm> __slice_kinds,
size_t __sub_rank)
1290 if constexpr (_Side == _LayoutSide::__left)
1291 return __mdspan::__padded_block_begin_generic(__slice_kinds, __sub_rank);
1294 std::array<_SliceKind, _Nm> __rev_slices;
1295 for(
size_t __i = 0; __i < _Nm; ++__i)
1296 __rev_slices[__i] = __slice_kinds[_Nm - 1 - __i];
1297 auto __rev_slice_kinds = span<const _SliceKind>(__rev_slices);
1299 auto __u = __mdspan::__padded_block_begin_generic(__rev_slice_kinds,
1301 return __u == dynamic_extent ? dynamic_extent : _Nm - 1 - __u;
1305 template<_LayoutS
ide _S
ide,
bool _Padded>
1306 struct _SubMdspanMapping;
1309 struct _SubMdspanMapping<_LayoutSide::__left, false>
1311 using _Layout = layout_left;
1312 template<
size_t _Pad>
using _PaddedLayout = layout_left_padded<_Pad>;
1314 template<
typename _Mapping,
size_t _Us>
1315 static consteval size_t
1318 using _Extents =
typename _Mapping::extents_type;
1319 constexpr auto __sta_exts = __mdspan::__static_extents<_Extents>(0, _Us);
1320 if constexpr (!__mdspan::__all_static(__sta_exts))
1321 return dynamic_extent;
1323 return __mdspan::__fwd_prod(__sta_exts);
1326 template<
size_t _Nm>
1327 static consteval bool
1328 _S_is_unpadded_submdspan(span<const _SliceKind, _Nm> __slice_kinds,
size_t __sub_rank)
1329 {
return __mdspan::__is_block(__slice_kinds, __sub_rank); }
1333 struct _SubMdspanMapping<_LayoutSide::__left, true>
1335 using _Layout = layout_left;
1336 template<
size_t _Pad>
using _PaddedLayout = layout_left_padded<_Pad>;
1338 template<
typename _Mapping,
size_t _Us>
1339 static consteval size_t
1342 using _Extents =
typename _Mapping::extents_type;
1343 constexpr auto __sta_exts
1344 = __mdspan::__static_extents<_Extents>(1, _Us);
1345 constexpr auto __sta_padstride
1346 = __mdspan::__get_static_stride<_Mapping>();
1347 if constexpr (__sta_padstride == dynamic_extent
1348 || !__mdspan::__all_static(__sta_exts))
1349 return dynamic_extent;
1351 return __sta_padstride * __mdspan::__fwd_prod(__sta_exts);
1354 template<
size_t _Nm>
1355 static consteval bool
1356 _S_is_unpadded_submdspan(span<const _SliceKind, _Nm> __slice_kinds,
1359 if (__sub_rank == 1)
1360 return __slice_kinds[0] == _SliceKind::__unit_stride_slice
1361 || __slice_kinds[0] == _SliceKind::__full;
1368 struct _SubMdspanMapping<_LayoutSide::__right, false>
1370 using _Layout = layout_right;
1371 template<
size_t _Pad>
using _PaddedLayout = layout_right_padded<_Pad>;
1373 template<
typename _Mapping,
size_t _Us>
1374 static consteval size_t
1377 using _Extents =
typename _Mapping::extents_type;
1378 constexpr auto __rank = _Extents::rank();
1379 constexpr auto __sta_exts
1380 = __mdspan::__static_extents<_Extents>(_Us + 1, __rank);
1381 if constexpr (!__mdspan::__all_static(__sta_exts))
1382 return dynamic_extent;
1384 return __fwd_prod(__sta_exts);
1387 template<
size_t _Nm>
1388 static consteval bool
1389 _S_is_unpadded_submdspan(span<const _SliceKind, _Nm> __slice_kinds,
1392 auto __rev_slice_kinds = array<_SliceKind, _Nm>{};
1393 for(
size_t __i = 0; __i < _Nm; ++__i)
1394 __rev_slice_kinds[__i] = __slice_kinds[_Nm - 1 - __i];
1395 return __mdspan::__is_block(span(__rev_slice_kinds), __sub_rank);
1400 struct _SubMdspanMapping<_LayoutSide::__right, true>
1402 using _Layout = layout_right;
1403 template<
size_t _Pad>
using _PaddedLayout = layout_right_padded<_Pad>;
1405 template<
typename _Mapping,
size_t _Us>
1406 static consteval size_t
1409 using _Extents =
typename _Mapping::extents_type;
1410 constexpr auto __rank = _Extents::rank();
1411 constexpr auto __sta_exts
1412 = __mdspan::__static_extents<_Extents>(_Us + 1, __rank - 1);
1413 constexpr auto __sta_padstride
1414 = __mdspan::__get_static_stride<_Mapping>();
1415 if constexpr (__sta_padstride == dynamic_extent
1416 || !__mdspan::__all_static(__sta_exts))
1417 return dynamic_extent;
1419 return __sta_padstride * __mdspan::__fwd_prod(__sta_exts);
1422 template<
size_t _Nm>
1423 static consteval bool
1424 _S_is_unpadded_submdspan(span<const _SliceKind, _Nm> __slice_kinds,
1427 if (__sub_rank == 1)
1428 return __slice_kinds[_Nm - 1] == _SliceKind::__unit_stride_slice
1429 || __slice_kinds[_Nm - 1] == _SliceKind::__full;
1436 template<
typename _Mapping>
1438 __submdspan_mapping_impl(
const _Mapping& __mapping)
1439 {
return submdspan_mapping_result{__mapping, 0}; }
1441 template<
typename _Mapping,
typename... _Slices>
1442 requires (
sizeof...(_Slices) > 0)
1444 __submdspan_mapping_impl(
const _Mapping& __mapping, _Slices... __slices)
1446 using _IndexType =
typename _Mapping::index_type;
1447 static_assert((__acceptable_slice_type<_Slices, _IndexType> && ...));
1449 constexpr auto __side = __mdspan::__mapping_side<_Mapping>();
1450 constexpr auto __rank =
sizeof...(_Slices);
1451 using _Trait = _SubMdspanMapping<__side, __is_padded_mapping<_Mapping>>;
1452 using _SliceView = span<const _SliceKind, __rank>;
1454 constexpr auto __slice_kinds = __mdspan::__make_slice_kind_array<_Slices...>();
1455 auto __offset = __mdspan::__suboffset(__mapping, __slices...);
1456 auto __sub_exts = __mdspan::__subextents(__mapping.extents(), __slices...);
1457 using _SubExts =
decltype(__sub_exts);
1458 constexpr auto __sub_rank = _SubExts::rank();
1459 if constexpr (__sub_rank == 0)
1460 return submdspan_mapping_result{
1461 typename _Trait::_Layout::mapping(__sub_exts), __offset};
1462 else if constexpr (_Trait::_S_is_unpadded_submdspan(
1463 _SliceView(__slice_kinds), __sub_rank))
1464 return submdspan_mapping_result{
1465 typename _Trait::_Layout::mapping(__sub_exts), __offset};
1467 constexpr auto __u = __padded_block_begin<__side>(
1468 _SliceView(__slice_kinds), __sub_rank);
1469 __u != dynamic_extent)
1471 constexpr auto __pad = _Trait::template _S_pad<_Mapping, __u>();
1472 using _Layout =
typename _Trait::template _PaddedLayout<__pad>;
1473 return submdspan_mapping_result{
1474 typename _Layout::mapping(__sub_exts, __mapping.stride(__u)),
1480 = __mdspan::__substrides<_SubExts>(__mapping, __slices...);
1481 return submdspan_mapping_result{
1482 layout_stride::mapping(__sub_exts, __sub_strides), __offset};
1488 template<
typename _Extents>
1489 class layout_left::mapping
1492 using extents_type = _Extents;
1493 using index_type =
typename extents_type::index_type;
1494 using size_type =
typename extents_type::size_type;
1495 using rank_type =
typename extents_type::rank_type;
1496 using layout_type = layout_left;
1498 static_assert(__mdspan::__representable_size<extents_type, index_type>,
1499 "The size of extents_type must be representable as index_type");
1502 mapping() noexcept = default;
1505 mapping(const mapping&) noexcept = default;
1508 mapping(const extents_type& __extents) noexcept
1509 : _M_extents(__extents)
1510 { __glibcxx_assert(__mdspan::__is_representable_extents(_M_extents)); }
1512 template<
typename _OExtents>
1513 requires is_constructible_v<extents_type, _OExtents>
1514 constexpr explicit(!is_convertible_v<_OExtents, extents_type>)
1515 mapping(
const mapping<_OExtents>& __other) noexcept
1516 : mapping(__other.extents(), __mdspan::__internal_ctor{})
1519 template<
typename _OExtents>
1520 requires (extents_type::rank() <= 1)
1521 && is_constructible_v<extents_type, _OExtents>
1522 constexpr explicit(!is_convertible_v<_OExtents, extents_type>)
1523 mapping(
const layout_right::mapping<_OExtents>& __other) noexcept
1524 : mapping(__other.extents(), __mdspan::__internal_ctor{})
1528 template<
typename _OExtents>
1529 requires is_constructible_v<extents_type, _OExtents>
1530 constexpr explicit(!(extents_type::rank() == 0
1531 && is_convertible_v<_OExtents, extents_type>))
1532 mapping(
const layout_stride::mapping<_OExtents>& __other) noexcept
1533 : mapping(__other.extents(), __mdspan::__internal_ctor{})
1534 { __glibcxx_assert(*
this == __other); }
1536#if __glibcxx_padded_layouts
1537 template<
typename _LeftpadMapping>
1538 requires __mdspan::__is_left_padded_mapping<_LeftpadMapping>
1539 && is_constructible_v<extents_type,
1540 typename _LeftpadMapping::extents_type>
1542 explicit(!is_convertible_v<
typename _LeftpadMapping::extents_type,
1544 mapping(
const _LeftpadMapping& __other) noexcept
1545 : mapping(__other.extents(), __mdspan::__internal_ctor{})
1547 constexpr size_t __ostride_sta
1548 = __mdspan::__get_static_stride<_LeftpadMapping>();
1550 if constexpr (extents_type::rank() > 1)
1552 if constexpr (extents_type::static_extent(0) != dynamic_extent
1553 && __ostride_sta != dynamic_extent)
1554 static_assert(extents_type::static_extent(0) == __ostride_sta);
1556 __glibcxx_assert(__other.stride(1)
1557 == __other.extents().extent(0));
1563 operator=(
const mapping&)
noexcept =
default;
1565 constexpr const extents_type&
1566 extents() const noexcept {
return _M_extents; }
1568 constexpr index_type
1569 required_span_size() const noexcept
1570 {
return __mdspan::__size(_M_extents); }
1574 template<__mdspan::__val
id_index_type<index_type>... _Indices>
1575 requires (
sizeof...(_Indices) == extents_type::rank())
1576 constexpr index_type
1577 operator()(_Indices... __indices)
const noexcept
1579 return __mdspan::__linear_index_left(_M_extents,
1580 static_cast<index_type
>(
std::move(__indices))...);
1583 static constexpr bool
1584 is_always_unique() noexcept {
return true; }
1586 static constexpr bool
1587 is_always_exhaustive() noexcept {
return true; }
1589 static constexpr bool
1590 is_always_strided() noexcept {
return true; }
1592 static constexpr bool
1593 is_unique() noexcept {
return true; }
1595 static constexpr bool
1596 is_exhaustive() noexcept {
return true; }
1598 static constexpr bool
1599 is_strided() noexcept {
return true; }
1601 constexpr index_type
1602 stride(rank_type __i)
const noexcept
1603 requires (extents_type::rank() > 0)
1605 __glibcxx_assert(__i < extents_type::rank());
1606 return __mdspan::__fwd_prod(_M_extents, __i);
1609 template<
typename _OExtents>
1610 requires (extents_type::rank() == _OExtents::rank())
1611 friend constexpr bool
1612 operator==(
const mapping& __self,
const mapping<_OExtents>& __other)
1614 {
return __self.extents() == __other.extents(); }
1617 template<
typename _OExtents>
1619 mapping(
const _OExtents& __oexts, __mdspan::__internal_ctor) noexcept
1620 : _M_extents(__oexts)
1622 static_assert(__mdspan::__representable_size<_OExtents, index_type>,
1623 "The size of OtherExtents must be representable as index_type");
1624 __glibcxx_assert(__mdspan::__is_representable_extents(_M_extents));
1627#if __glibcxx_submdspan
1628 template<
typename... _Slices>
1629 requires (extents_type::rank() ==
sizeof...(_Slices))
1630 friend constexpr auto
1631 submdspan_mapping(
const mapping& __mapping, _Slices... __slices)
1632 {
return __mdspan::__submdspan_mapping_impl(__mapping, __slices...); }
1635 [[no_unique_address]] extents_type _M_extents{};
1640 template<
typename _Extents,
typename... _Indices>
1641 constexpr typename _Extents::index_type
1642 __linear_index_right(
const _Extents& __exts, _Indices... __indices)
1645 using _IndexType =
typename _Extents::index_type;
1646 array<_IndexType,
sizeof...(__indices)> __ind_arr{__indices...};
1647 _IndexType __res = 0;
1648 if constexpr (
sizeof...(__indices) > 0)
1650 _IndexType __mult = 1;
1651 auto __update = [&, __pos = __exts.rank()](_IndexType)
mutable
1654 _GLIBCXX_DEBUG_ASSERT(cmp_less(__ind_arr[__pos],
1655 __exts.extent(__pos)));
1656 __res += __ind_arr[__pos] * __mult;
1657 __mult *= __exts.extent(__pos);
1659 (__update(__indices), ...);
1665 template<
typename _Extents>
1666 class layout_right::mapping
1669 using extents_type = _Extents;
1670 using index_type =
typename extents_type::index_type;
1671 using size_type =
typename extents_type::size_type;
1672 using rank_type =
typename extents_type::rank_type;
1673 using layout_type = layout_right;
1675 static_assert(__mdspan::__representable_size<extents_type, index_type>,
1676 "The size of extents_type must be representable as index_type");
1679 mapping() noexcept = default;
1682 mapping(const mapping&) noexcept = default;
1685 mapping(const extents_type& __extents) noexcept
1686 : _M_extents(__extents)
1687 { __glibcxx_assert(__mdspan::__is_representable_extents(_M_extents)); }
1689 template<
typename _OExtents>
1690 requires is_constructible_v<extents_type, _OExtents>
1691 constexpr explicit(!is_convertible_v<_OExtents, extents_type>)
1692 mapping(
const mapping<_OExtents>& __other) noexcept
1693 : mapping(__other.extents(), __mdspan::__internal_ctor{})
1696 template<
typename _OExtents>
1697 requires (extents_type::rank() <= 1)
1698 && is_constructible_v<extents_type, _OExtents>
1699 constexpr explicit(!is_convertible_v<_OExtents, extents_type>)
1700 mapping(
const layout_left::mapping<_OExtents>& __other) noexcept
1701 : mapping(__other.extents(), __mdspan::__internal_ctor{})
1704 template<
typename _OExtents>
1705 requires is_constructible_v<extents_type, _OExtents>
1706 constexpr explicit(!(extents_type::rank() == 0
1707 && is_convertible_v<_OExtents, extents_type>))
1708 mapping(
const layout_stride::mapping<_OExtents>& __other) noexcept
1709 : mapping(__other.extents(), __mdspan::__internal_ctor{})
1710 { __glibcxx_assert(*
this == __other); }
1712#if __glibcxx_padded_layouts
1713 template<
typename _RightPaddedMapping>
1714 requires __mdspan::__is_right_padded_mapping<_RightPaddedMapping>
1715 && is_constructible_v<extents_type,
1716 typename _RightPaddedMapping::extents_type>
1718 explicit(!is_convertible_v<
typename _RightPaddedMapping::extents_type,
1720 mapping(
const _RightPaddedMapping& __other) noexcept
1721 : mapping(__other.extents(), __mdspan::__internal_ctor{})
1723 constexpr size_t __rank = extents_type::rank();
1724 constexpr size_t __ostride_sta
1725 = __mdspan::__get_static_stride<_RightPaddedMapping>();
1727 if constexpr (__rank > 1)
1729 if constexpr (extents_type::static_extent(__rank - 1) != dynamic_extent
1730 && __ostride_sta != dynamic_extent)
1731 static_assert(extents_type::static_extent(__rank - 1)
1734 __glibcxx_assert(__other.stride(__rank - 2)
1735 == __other.extents().extent(__rank - 1));
1741 operator=(
const mapping&)
noexcept =
default;
1743 constexpr const extents_type&
1744 extents() const noexcept {
return _M_extents; }
1746 constexpr index_type
1747 required_span_size() const noexcept
1748 {
return __mdspan::__size(_M_extents); }
1752 template<__mdspan::__val
id_index_type<index_type>... _Indices>
1753 requires (
sizeof...(_Indices) == extents_type::rank())
1754 constexpr index_type
1755 operator()(_Indices... __indices)
const noexcept
1757 return __mdspan::__linear_index_right(
1758 _M_extents,
static_cast<index_type
>(
std::move(__indices))...);
1761 static constexpr bool
1762 is_always_unique() noexcept
1765 static constexpr bool
1766 is_always_exhaustive() noexcept
1769 static constexpr bool
1770 is_always_strided() noexcept
1773 static constexpr bool
1774 is_unique() noexcept
1777 static constexpr bool
1778 is_exhaustive() noexcept
1781 static constexpr bool
1782 is_strided() noexcept
1785 constexpr index_type
1786 stride(rank_type __i)
const noexcept
1787 requires (extents_type::rank() > 0)
1789 __glibcxx_assert(__i < extents_type::rank());
1790 return __mdspan::__rev_prod(_M_extents, __i);
1793 template<
typename _OExtents>
1794 requires (extents_type::rank() == _OExtents::rank())
1795 friend constexpr bool
1796 operator==(
const mapping& __self,
const mapping<_OExtents>& __other)
1798 {
return __self.extents() == __other.extents(); }
1801 template<
typename _OExtents>
1803 mapping(
const _OExtents& __oexts, __mdspan::__internal_ctor) noexcept
1804 : _M_extents(__oexts)
1806 static_assert(__mdspan::__representable_size<_OExtents, index_type>,
1807 "The size of OtherExtents must be representable as index_type");
1808 __glibcxx_assert(__mdspan::__is_representable_extents(_M_extents));
1811#if __glibcxx_submdspan
1812 template<
typename... _Slices>
1813 requires (extents_type::rank() ==
sizeof...(_Slices))
1814 friend constexpr auto
1815 submdspan_mapping(
const mapping& __mapping, _Slices... __slices)
1816 {
return __mdspan::__submdspan_mapping_impl(__mapping, __slices...); }
1819 [[no_unique_address]] extents_type _M_extents{};
1824 template<
typename _Mp>
1825 concept __mapping_alike =
requires
1827 requires __is_extents<typename _Mp::extents_type>;
1828 { _Mp::is_always_strided() } -> same_as<bool>;
1829 { _Mp::is_always_exhaustive() } -> same_as<bool>;
1830 { _Mp::is_always_unique() } -> same_as<bool>;
1831 bool_constant<_Mp::is_always_strided()>::value;
1832 bool_constant<_Mp::is_always_exhaustive()>::value;
1833 bool_constant<_Mp::is_always_unique()>::value;
1836 template<
typename _Mapping,
typename... _Indices>
1837 constexpr typename _Mapping::index_type
1838 __linear_index_strides(
const _Mapping& __m, _Indices... __indices)
1841 using _IndexType =
typename _Mapping::index_type;
1842 _IndexType __res = 0;
1843 if constexpr (
sizeof...(__indices) > 0)
1845 auto __update = [&, __pos = 0u](_IndexType __idx)
mutable
1847 _GLIBCXX_DEBUG_ASSERT(cmp_less(__idx,
1848 __m.extents().extent(__pos)));
1849 __res += __idx * __m.stride(__pos++);
1851 (__update(__indices), ...);
1857 template<
typename _Extents>
1858 class layout_stride::mapping
1861 using extents_type = _Extents;
1862 using index_type =
typename extents_type::index_type;
1863 using size_type =
typename extents_type::size_type;
1864 using rank_type =
typename extents_type::rank_type;
1865 using layout_type = layout_stride;
1867 static_assert(__mdspan::__representable_size<extents_type, index_type>,
1868 "The size of extents_type must be representable as index_type");
1875 size_t __stride = 1;
1876 for (
size_t __i = extents_type::rank(); __i > 0; --__i)
1878 _M_strides[__i - 1] = index_type(__stride);
1879 __stride *= size_t(_M_extents.extent(__i - 1));
1884 mapping(
const mapping&)
noexcept =
default;
1886 template<
typename _OIndexType>
1887 requires __mdspan::__valid_index_type<const _OIndexType&, index_type>
1889 mapping(
const extents_type& __exts,
1890 span<_OIndexType, extents_type::rank()> __strides) noexcept
1891 : _M_extents(__exts)
1893 for (
size_t __i = 0; __i < extents_type::rank(); ++__i)
1895 __mdspan::__index_type_cast<index_type>(as_const(__strides[__i]));
1898 template<
typename _OIndexType>
1899 requires __mdspan::__valid_index_type<const _OIndexType&, index_type>
1901 mapping(
const extents_type& __exts,
1902 const array<_OIndexType, extents_type::rank()>& __strides)
1905 span<
const _OIndexType, extents_type::rank()>(__strides))
1908 template<__mdspan::__mapping_alike _Str
idedMapping>
1909 requires (is_constructible_v<extents_type,
1910 typename _StridedMapping::extents_type>
1911 && _StridedMapping::is_always_unique()
1912 && _StridedMapping::is_always_strided())
1913 constexpr explicit(!(
1914 is_convertible_v<typename _StridedMapping::extents_type, extents_type>
1915 && __mdspan::__standardized_mapping<_StridedMapping>))
1916 mapping(
const _StridedMapping& __other) noexcept
1917 : _M_extents(__other.extents())
1919 using _OIndexType = _StridedMapping::index_type;
1920 using _OExtents = _StridedMapping::extents_type;
1922 __glibcxx_assert(__mdspan::__offset(__other) == 0);
1923 static_assert(__mdspan::__representable_size<_OExtents, index_type>,
1924 "The size of StridedMapping::extents_type must be representable as"
1926 if constexpr (cmp_greater(__gnu_cxx::__int_traits<_OIndexType>::__max,
1927 __gnu_cxx::__int_traits<index_type>::__max))
1928 __glibcxx_assert(!cmp_less(
1929 __gnu_cxx::__int_traits<index_type>::__max,
1930 __other.required_span_size())
1931 &&
"other.required_span_size() must be representable"
1933 if constexpr (extents_type::rank() > 0)
1934 for (
size_t __i = 0; __i < extents_type::rank(); ++__i)
1935 _M_strides[__i] = index_type(__other.stride(__i));
1939 operator=(
const mapping&)
noexcept =
default;
1941 constexpr const extents_type&
1942 extents() const noexcept {
return _M_extents; }
1944 constexpr array<index_type, extents_type::rank()>
1945 strides() const noexcept
1947 array<index_type, extents_type::rank()> __ret;
1948 for (
size_t __i = 0; __i < extents_type::rank(); ++__i)
1949 __ret[__i] = _M_strides[__i];
1953 constexpr index_type
1954 required_span_size() const noexcept
1956 if (__mdspan::__empty(_M_extents))
1959 index_type __ret = 1;
1960 for (
size_t __i = 0; __i < extents_type::rank(); ++__i)
1961 __ret += (_M_extents.extent(__i) - 1) * _M_strides[__i];
1967 template<__mdspan::__val
id_index_type<index_type>... _Indices>
1968 requires (
sizeof...(_Indices) == extents_type::rank())
1969 constexpr index_type
1970 operator()(_Indices... __indices)
const noexcept
1972 return __mdspan::__linear_index_strides(*
this,
1973 static_cast<index_type
>(
std::move(__indices))...);
1976 static constexpr bool
1977 is_always_unique() noexcept {
return true; }
1981 static constexpr bool
1982 is_always_exhaustive() noexcept
1984 return (_Extents::rank() == 0) || __mdspan::__contains_zero(
1985 __mdspan::__static_extents<extents_type>());
1988 static constexpr bool
1989 is_always_strided() noexcept {
return true; }
1991 static constexpr bool
1992 is_unique() noexcept {
return true; }
1997 is_exhaustive() const noexcept
1999 if constexpr (!is_always_exhaustive())
2001 auto __size = __mdspan::__size(_M_extents);
2003 return __size == required_span_size();
2008 static constexpr bool
2009 is_strided() noexcept {
return true; }
2011 constexpr index_type
2012 stride(rank_type __r)
const noexcept {
return _M_strides[__r]; }
2014 template<__mdspan::__mapping_alike _OMapping>
2015 requires ((extents_type::rank() == _OMapping::extents_type::rank())
2016 && _OMapping::is_always_strided())
2017 friend constexpr bool
2018 operator==(
const mapping& __self,
const _OMapping& __other)
noexcept
2020 if (__self.extents() != __other.extents())
2022 if constexpr (extents_type::rank() > 0)
2023 for (
size_t __i = 0; __i < extents_type::rank(); ++__i)
2024 if (!cmp_equal(__self.stride(__i), __other.stride(__i)))
2026 return __mdspan::__offset(__other) == 0;
2030#if __glibcxx_submdspan
2031 template<
typename... _Slices>
2032 requires (extents_type::rank() ==
sizeof...(_Slices))
2033 friend constexpr auto
2034 submdspan_mapping(
const mapping& __mapping, _Slices... __slices)
2036 if constexpr (
sizeof...(_Slices) == 0)
2037 return submdspan_mapping_result{__mapping, 0};
2040 auto __offset = __mdspan::__suboffset(__mapping, __slices...);
2041 auto __sub_exts = __mdspan::__subextents(__mapping.extents(), __slices...);
2043 = __mdspan::__substrides<decltype(__sub_exts)>(__mapping, __slices...);
2044 return submdspan_mapping_result{
2045 layout_stride::mapping(__sub_exts, __sub_strides), __offset};
2050 using _Strides =
typename __array_traits<index_type,
2051 extents_type::rank()>::_Type;
2052 [[no_unique_address]] extents_type _M_extents;
2053 [[no_unique_address]] _Strides _M_strides;
2056#ifdef __glibcxx_padded_layouts
2060 __least_multiple(
size_t __x,
size_t __y)
2064 return (__y / __x + (__y % __x != 0)) * __x ;
2067 template<
typename _IndexType>
2069 __is_representable_least_multiple(
size_t __x,
size_t __y)
2071 constexpr auto __y_max = __gnu_cxx::__int_traits<_IndexType>::__max;
2072 if(std::cmp_greater(__y, __y_max))
2078 auto __max_delta = __y_max -
static_cast<_IndexType
>(__y);
2079 auto __y_mod_x = __y % __x;
2080 auto __delta = (__y_mod_x == 0) ?
size_t(0) : (__x - __y_mod_x);
2081 return std::cmp_less_equal(__delta, __max_delta);
2084 template<
typename _Extents,
size_t _PaddingValue,
typename _LayoutTraits,
2085 size_t _Rank = _Extents::rank()>
2086 concept __valid_static_stride = (_Extents::rank() <= 1)
2087 || (_PaddingValue == dynamic_extent)
2088 || (_Extents::static_extent(_LayoutTraits::_S_ext_idx) == dynamic_extent)
2089 || (__is_representable_least_multiple<size_t>(
2090 _PaddingValue, _Extents::static_extent(_LayoutTraits::_S_ext_idx)));
2092 template<
size_t _PaddedStride,
typename _Extents,
2093 typename _LayoutTraits>
2095 __is_representable_padded_size()
2097 using _IndexType =
typename _Extents::index_type;
2098 auto __sta_exts = __static_extents<_Extents>(
2099 _LayoutTraits::_S_unpad_begin, _LayoutTraits::_S_unpad_end);
2100 size_t __max = __gnu_cxx::__int_traits<_IndexType>::__max;
2101 return __static_quotient(__sta_exts, __max / _PaddedStride) != 0;
2104 template<
typename _Extents,
size_t _PaddedStride,
typename _LayoutTraits,
2105 size_t _Rank = _Extents::rank()>
2106 concept __valid_padded_size = (_Rank <= 1)
2107 || (_PaddedStride == dynamic_extent)
2108 || (!__all_static(__static_extents<_Extents>()))
2109 || (__contains_zero(__static_extents<_Extents>()))
2110 || (__is_representable_padded_size<_PaddedStride, _Extents,
2113 template<
typename _Extents,
typename _Stride,
typename... _Indices>
2114 constexpr typename _Extents::index_type
2115 __linear_index_leftpad(
const _Extents& __exts, _Stride __stride,
2116 _Indices... __indices)
2119 using _IndexType =
typename _Extents::index_type;
2120 _IndexType __res = 0;
2121 if constexpr (
sizeof...(__indices) > 0)
2123 _IndexType __mult = 1;
2125 auto __update_rest = [&, __pos = 1u](_IndexType __idx)
mutable
2127 __res += __idx * __mult;
2128 __mult *= __exts.extent(__pos);
2132 auto __update = [&](_IndexType __idx,
auto... __rest)
2135 __mult = __stride.extent(0);
2136 (__update_rest(__rest), ...);
2138 __update(__indices...);
2143 template<
typename _Extents,
typename _Stride,
typename... _Indices>
2144 constexpr typename _Extents::index_type
2145 __linear_index_rightpad(
const _Extents& __exts, _Stride __stride,
2146 _Indices... __indices)
2149 using _IndexType =
typename _Extents::index_type;
2150 _IndexType __res = 0;
2151 if constexpr (
sizeof...(__indices) > 0)
2153 _IndexType __mult = 1;
2154 array<_IndexType,
sizeof...(__indices)> __ind_arr{__indices...};
2156 auto __update_rest = [&, __pos = __exts.rank()-1](_IndexType)
mutable
2159 __res += __ind_arr[__pos] * __mult;
2160 __mult *= __exts.extent(__pos);
2163 auto __update = [&](_IndexType,
auto... __rest)
2165 __res += __ind_arr[__exts.rank() - 1];
2166 __mult = __stride.extent(0);
2167 (__update_rest(__rest), ...);
2169 __update(__indices...);
2174 template<
size_t _Rank>
2175 struct _LeftPaddedLayoutTraits
2177 using _LayoutSame = layout_left;
2178 using _LayoutOther = layout_right;
2180 constexpr static const size_t _S_ext_idx = 0;
2181 constexpr static const size_t _S_stride_idx = 1;
2182 constexpr static const size_t _S_unpad_begin = 1;
2183 constexpr static const size_t _S_unpad_end = _Rank;
2185 template<
typename _IndexType,
size_t _StaticStride,
size_t..._Extents>
2186 constexpr static auto
2187 _S_make_padded_extent(
2188 extents<_IndexType, _StaticStride> __stride,
2189 const extents<_IndexType, _Extents...>& __exts)
2191 auto __impl = [&]<
size_t... _Is>(integer_sequence<size_t, _Is...>)
2193 return extents<_IndexType, _StaticStride,
2194 (_Extents...[_Is + 1])...>{
2195 __stride.extent(0), __exts.extent(_Is + 1)...};
2197 return __impl(make_index_sequence<
sizeof...(_Extents) - 1>());
2201 template<
size_t _Rank>
2202 struct _RightPaddedLayoutTraits
2204 using _LayoutSame = layout_right;
2205 using _LayoutOther = layout_left;
2207 constexpr static size_t _S_ext_idx = _Rank - 1;
2208 constexpr static size_t _S_stride_idx = _Rank - 2;
2209 constexpr static size_t _S_unpad_begin = 0;
2210 constexpr static size_t _S_unpad_end = _Rank - 1;
2212 template<
typename _IndexType,
size_t _StaticStride,
size_t..._Extents>
2213 constexpr static auto
2214 _S_make_padded_extent(
2215 extents<_IndexType, _StaticStride> __stride,
2216 const extents<_IndexType, _Extents...>& __exts)
2218 auto __impl = [&]<
size_t... _Is>(integer_sequence<size_t, _Is...>)
2220 return extents<_IndexType, (_Extents...[_Is])..., _StaticStride>{
2221 __exts.extent(_Is)..., __stride.extent(0)};
2223 return __impl(make_index_sequence<
sizeof...(_Extents) - 1>());
2227 template<
size_t _PaddingValue,
typename _Extents,
typename _LayoutTraits>
2228 class _PaddedStorage
2230 using _LayoutSame =
typename _LayoutTraits::_LayoutSame;
2233 using _IndexType =
typename _Extents::index_type;
2234 constexpr static size_t _S_rank = _Extents::rank();
2238 static_assert((_PaddingValue == dynamic_extent)
2239 || (cmp_less_equal(_PaddingValue,
2240 __gnu_cxx::__int_traits<_IndexType>::__max)),
2241 "padding_value must be representable as index_type");
2243 static_assert(__representable_size<_Extents, _IndexType>,
2244 "The size of extents_type must be representable as index_type");
2246 static_assert(__valid_static_stride<_Extents, _PaddingValue,
2248 "The padded stride must be representable as size_t");
2250 static constexpr size_t _S_static_stride = []
consteval
2252 constexpr size_t __rank = _Extents::rank();
2253 if constexpr (__rank <= 1)
2257 constexpr size_t __ext_idx = _LayoutTraits::_S_ext_idx;
2258 constexpr size_t __sta_ext = _Extents::static_extent(__ext_idx);
2259 if constexpr (__sta_ext == 0)
2261 else if constexpr (_PaddingValue == dynamic_extent
2262 || __sta_ext == dynamic_extent)
2263 return dynamic_extent;
2265 return __least_multiple(_PaddingValue, __sta_ext);
2269 static_assert(_S_static_stride == dynamic_extent
2270 || cmp_less_equal(_S_static_stride,
2271 __gnu_cxx::__int_traits<_IndexType>::__max),
2272 "Padded stride must be representable as index_type");
2274 static_assert(__valid_padded_size<_Extents, _S_static_stride,
2278 _PaddedStorage() noexcept
2280 if constexpr (_S_rank > 1)
2281 if constexpr (_S_static_stride == dynamic_extent
2282 && _S_static_padextent() != dynamic_extent)
2283 _M_stride = _Stride{_S_static_padextent()};
2287 _PaddedStorage(
const _Extents& __exts)
2288 : _M_extents(__exts)
2290 if constexpr (!__all_static(__static_extents<_Extents>()))
2291 __glibcxx_assert(__is_representable_extents(_M_extents));
2293 if constexpr (_S_rank > 1)
2295 _IndexType __stride;
2296 if constexpr (_PaddingValue == dynamic_extent)
2297 __stride = _M_padextent();
2298 else if constexpr (_S_static_padextent() != dynamic_extent)
2303 __is_representable_least_multiple<_IndexType>(
2304 _PaddingValue, _M_padextent()));
2306 __stride =
static_cast<_IndexType
>(
2307 __least_multiple(_PaddingValue, _M_padextent()));
2309 __glibcxx_assert(__is_representable_extents(
2310 _LayoutTraits::_S_make_padded_extent(
2311 std::dextents<_IndexType, 1>{__stride},
2314 _M_stride = _Stride{__stride};
2319 _PaddedStorage(
const _Extents& __exts, _IndexType __pad)
2320 : _M_extents(__exts)
2322 if constexpr (_PaddingValue != dynamic_extent)
2323 __glibcxx_assert(cmp_equal(_PaddingValue, __pad));
2324 if constexpr (_S_rank > 1 && _S_static_stride == dynamic_extent)
2327 __is_representable_least_multiple<_IndexType>(
2328 __pad, _M_padextent()));
2330 _M_stride = _Stride{
static_cast<_IndexType
>(
2331 __least_multiple(__pad, _M_padextent()))};
2333 __glibcxx_assert(__is_representable_extents(
2334 _LayoutTraits::_S_make_padded_extent(
2335 _M_stride, _M_extents)));
2339 template<
typename _OExtents>
2342 const typename _LayoutSame::template mapping<_OExtents>& __other)
2343 : _PaddedStorage(_Extents(__other.extents()))
2345 constexpr size_t __stride_idx = _LayoutTraits::_S_stride_idx;
2346 constexpr size_t __ext_idx = _LayoutTraits::_S_ext_idx;
2347 if constexpr (_S_rank > 1 && _PaddingValue != dynamic_extent)
2349 static_assert(_S_static_stride == dynamic_extent
2350 || _OExtents::static_extent(__ext_idx) == dynamic_extent
2351 || _S_static_stride == _OExtents::static_extent(__ext_idx),
2352 "The padded stride must be compatible with other");
2354 if constexpr (_S_static_stride == dynamic_extent
2355 || _OExtents::static_extent(__stride_idx) == dynamic_extent)
2356 __glibcxx_assert(std::cmp_equal(_M_padstride(),
2361 template<
typename _OExtents>
2363 _PaddedStorage(
const typename layout_stride::mapping<_OExtents>&
2365 : _M_extents(__other.extents())
2367 __glibcxx_assert(cmp_less_equal(__other.required_span_size(),
2371 constexpr size_t __stride_idx = _LayoutTraits::_S_stride_idx;
2372 if constexpr (_S_rank > 1)
2374 if constexpr (_PaddingValue != dynamic_extent)
2375 __glibcxx_assert(cmp_equal(__other.stride(__stride_idx),
2376 _M_calc_padstride())
2377 &&
"The padded stride must be compatible with other");
2378 if constexpr (_S_static_stride == dynamic_extent)
2379 _M_stride = _Stride{__other.stride(__stride_idx)};
2383 template<
typename _SamePaddedMapping>
2385 _PaddedStorage(_LayoutTraits::_LayoutSame,
2386 const _SamePaddedMapping& __other)
2387 : _M_extents(__other.extents())
2389 if constexpr (_S_rank > 1)
2391 static_assert(_PaddingValue == dynamic_extent
2392 || _SamePaddedMapping::padding_value == dynamic_extent
2393 || _PaddingValue == _SamePaddedMapping::padding_value,
2394 "If neither PaddingValue is dynamic_extent, then they must "
2397 constexpr size_t __stride_idx = _LayoutTraits::_S_stride_idx;
2398 if constexpr (_PaddingValue != dynamic_extent)
2399 __glibcxx_assert(cmp_equal(__other.stride(__stride_idx),
2400 _M_calc_padstride())
2401 &&
"The padded stride must be compatible with other");
2402 if constexpr (_S_static_stride == dynamic_extent)
2403 _M_stride = _Stride{__other.stride(__stride_idx)};
2405 __glibcxx_assert(cmp_less_equal(__other.required_span_size(),
2406 __gnu_cxx::__int_traits<_IndexType>::__max));
2409 template<
typename _OtherPaddedMapping>
2411 _PaddedStorage(_LayoutTraits::_LayoutOther,
2412 const _OtherPaddedMapping& __other) noexcept
2413 : _M_extents(__other.extents())
2415 __glibcxx_assert(cmp_less_equal(__other.required_span_size(),
2416 __gnu_cxx::__int_traits<_IndexType>::__max));
2419 static constexpr bool
2420 _M_is_always_exhaustive() noexcept
2422 if constexpr (_S_rank <= 1)
2425 return _S_static_padextent() != dynamic_extent
2426 && _S_static_stride != dynamic_extent
2427 && _S_static_padextent() == _S_static_stride;
2431 _M_is_exhaustive() const noexcept
2433 if constexpr (_M_is_always_exhaustive())
2436 return cmp_equal(_M_padextent(), _M_padstride());
2439 constexpr static size_t
2440 _S_static_padextent() noexcept
2441 {
return _Extents::static_extent(_LayoutTraits::_S_ext_idx); }
2443 constexpr _IndexType
2444 _M_padextent() const noexcept
2445 {
return _M_extents.extent(_LayoutTraits::_S_ext_idx); }
2447 constexpr _IndexType
2448 _M_calc_padstride() const noexcept
2450 if constexpr (_S_static_stride != dynamic_extent)
2451 return _S_static_stride;
2452 else if constexpr (_PaddingValue != dynamic_extent)
2453 return __least_multiple(_PaddingValue, _M_padextent());
2455 return _M_padextent();
2458 constexpr _IndexType
2459 _M_padstride() const noexcept
2460 {
return _M_stride.extent(0); }
2462 constexpr _IndexType
2463 _M_required_span_size() const noexcept
2465 if constexpr (_S_rank == 0)
2467 else if (__mdspan::__empty(_M_extents))
2471 size_t __stride =
static_cast<size_t>(_M_padstride());
2472 size_t __prod_rest = __mdspan::__fwd_prod(_M_extents,
2473 _LayoutTraits::_S_unpad_begin, _LayoutTraits::_S_unpad_end);
2474 size_t __delta = _M_padstride() - _M_padextent();
2475 return static_cast<_IndexType
>(__stride * __prod_rest - __delta);
2479 template<
typename _SamePaddedMapping>
2481 _M_equal(
const _SamePaddedMapping& __other)
const noexcept
2483 return _M_extents == __other.extents()
2485 || cmp_equal(_M_stride.extent(0),
2486 __other.stride(_LayoutTraits::_S_stride_idx)));
2489 using _Stride = std::extents<_IndexType, _S_static_stride>;
2490 [[no_unique_address]] _Stride _M_stride;
2491 [[no_unique_address]] _Extents _M_extents;
2495 template<
size_t _PaddingValue>
2496 template<
typename _Extents>
2497 class layout_left_padded<_PaddingValue>::mapping
2500 static constexpr size_t padding_value = _PaddingValue;
2502 using extents_type = _Extents;
2503 using index_type =
typename extents_type::index_type;
2504 using size_type =
typename extents_type::size_type;
2505 using rank_type =
typename extents_type::rank_type;
2506 using layout_type = layout_left_padded<padding_value>;
2509 static constexpr size_t _S_rank = extents_type::rank();
2510 using _PaddedStorage = __mdspan::_PaddedStorage<_PaddingValue,
2511 _Extents, __mdspan::_LeftPaddedLayoutTraits<_S_rank>>;
2512 [[no_unique_address]] _PaddedStorage _M_storage;
2514 consteval friend size_t
2515 __mdspan::__get_static_stride<mapping>();
2517 constexpr index_type
2518 _M_extent(
size_t __r)
const noexcept
2519 {
return _M_storage._M_extents.extent(__r); }
2521 constexpr index_type
2522 _M_padstride() const noexcept
2523 {
return _M_storage._M_stride.extent(0); }
2531 mapping(
const mapping&)
noexcept =
default;
2534 mapping(
const extents_type& __exts)
2535 : _M_storage(__exts)
2538 template<__mdspan::__val
id_index_type<index_type> _OIndexType>
2540 mapping(
const extents_type& __exts, _OIndexType __pad)
2541 : _M_storage(__exts,
2542 __mdspan::__index_type_cast<index_type>(std::move(__pad)))
2545 template<
typename _OExtents>
2546 requires is_constructible_v<extents_type, _OExtents>
2547 constexpr explicit(!is_convertible_v<_OExtents, extents_type>)
2548 mapping(
const layout_left::mapping<_OExtents>& __other)
2549 : _M_storage(__other)
2552 template<
typename _OExtents>
2553 requires is_constructible_v<_OExtents, extents_type>
2554 constexpr explicit(!(_OExtents::rank() == 0
2555 && is_convertible_v<_OExtents, extents_type>))
2556 mapping(
const typename layout_stride::mapping<_OExtents>& __other)
2557 : _M_storage(__other)
2558 { __glibcxx_assert(*
this == __other); }
2560 template<
typename _LeftPaddedMapping>
2561 requires __mdspan::__is_left_padded_mapping<_LeftPaddedMapping>
2562 && is_constructible_v<extents_type,
2563 typename _LeftPaddedMapping::extents_type>
2565 !is_convertible_v<
typename _LeftPaddedMapping::extents_type,
2567 || _S_rank > 1 && (padding_value != dynamic_extent
2568 || _LeftPaddedMapping::padding_value == dynamic_extent))
2569 mapping(
const _LeftPaddedMapping& __other)
2570 : _M_storage(layout_left{}, __other)
2573 template<
typename _RightPaddedMapping>
2574 requires (__mdspan::__is_right_padded_mapping<_RightPaddedMapping>
2575 || __mdspan::__mapping_of<layout_right, _RightPaddedMapping>)
2577 && is_constructible_v<extents_type,
2578 typename _RightPaddedMapping::extents_type>
2579 constexpr explicit(!is_convertible_v<
2580 typename _RightPaddedMapping::extents_type, extents_type>)
2581 mapping(
const _RightPaddedMapping& __other) noexcept
2582 : _M_storage(layout_right{}, __other)
2586 operator=(
const mapping&)
noexcept =
default;
2588 constexpr const extents_type&
2589 extents() const noexcept {
return _M_storage._M_extents; }
2591 constexpr array<index_type, _S_rank>
2592 strides() const noexcept
2594 array<index_type, _S_rank> __ret;
2595 if constexpr (_S_rank > 0)
2597 if constexpr (_S_rank > 1)
2598 __ret[1] = _M_padstride();
2599 if constexpr (_S_rank > 2)
2600 for(
size_t __i = 2; __i < _S_rank; ++__i)
2601 __ret[__i] = __ret[__i - 1] * _M_extent(__i - 1);
2605 constexpr index_type
2606 required_span_size() const noexcept
2607 {
return _M_storage._M_required_span_size(); }
2611 template<__mdspan::__val
id_index_type<index_type>... _Indices>
2612 requires (
sizeof...(_Indices) == _S_rank)
2613 constexpr index_type
2614 operator()(_Indices... __indices)
const noexcept
2616 return __mdspan::__linear_index_leftpad(
2617 extents(), _M_storage._M_stride,
2618 static_cast<index_type
>(
std::move(__indices))...);
2621 static constexpr bool
2622 is_always_exhaustive() noexcept
2623 {
return _PaddedStorage::_M_is_always_exhaustive(); }
2626 is_exhaustive() const noexcept
2627 {
return _M_storage._M_is_exhaustive(); }
2629 static constexpr bool
2630 is_always_unique() noexcept {
return true; }
2632 static constexpr bool
2633 is_unique() noexcept {
return true; }
2635 static constexpr bool
2636 is_always_strided() noexcept {
return true; }
2638 static constexpr bool
2639 is_strided() noexcept {
return true; }
2641 constexpr index_type
2642 stride(rank_type __r)
const noexcept
2644 __glibcxx_assert(__r < _S_rank);
2648 return static_cast<index_type
>(
2649 static_cast<size_t>(_M_padstride()) *
2650 static_cast<size_t>(__mdspan::__fwd_prod(extents(), 1, __r)));
2653 template<
typename _LeftpadMapping>
2654 requires(__mdspan::__is_left_padded_mapping<_LeftpadMapping>
2655 && _LeftpadMapping::extents_type::rank() == _S_rank)
2656 friend constexpr bool
2657 operator==(
const mapping& __self,
const _LeftpadMapping& __other)
2659 {
return __self._M_storage._M_equal(__other); }
2662#if __glibcxx_submdspan
2663 template<
typename... _Slices>
2664 requires (extents_type::rank() ==
sizeof...(_Slices))
2665 friend constexpr auto
2666 submdspan_mapping(
const mapping& __mapping, _Slices... __slices)
2667 {
return __mdspan::__submdspan_mapping_impl(__mapping, __slices...); }
2671 template<
size_t _PaddingValue>
2672 template<
typename _Extents>
2673 class layout_right_padded<_PaddingValue>::mapping {
2675 static constexpr size_t padding_value = _PaddingValue;
2676 using extents_type = _Extents;
2677 using index_type =
typename extents_type::index_type;
2678 using size_type =
typename extents_type::size_type;
2679 using rank_type =
typename extents_type::rank_type;
2680 using layout_type = layout_right_padded<_PaddingValue>;
2683 static constexpr size_t _S_rank = extents_type::rank();
2684 using _PaddedStorage = __mdspan::_PaddedStorage<_PaddingValue,
2685 _Extents, __mdspan::_RightPaddedLayoutTraits<_S_rank>>;
2686 [[no_unique_address]] _PaddedStorage _M_storage;
2688 consteval friend size_t
2689 __mdspan::__get_static_stride<mapping>();
2691 constexpr index_type
2692 _M_extent(
size_t __r)
const noexcept
2693 {
return _M_storage._M_extents.extent(__r); }
2695 constexpr index_type
2696 _M_padstride() const noexcept
2697 {
return _M_storage._M_stride.extent(0); }
2705 mapping(
const mapping&)
noexcept =
default;
2708 mapping(
const extents_type& __exts)
2709 : _M_storage(__exts)
2712 template<__mdspan::__val
id_index_type<index_type> _OIndexType>
2714 mapping(
const extents_type& __exts, _OIndexType __pad)
2715 : _M_storage(__exts,
2716 __mdspan::__index_type_cast<index_type>(std::move(__pad)))
2719 template<
typename _OExtents>
2720 requires is_constructible_v<extents_type, _OExtents>
2721 constexpr explicit(!is_convertible_v<_OExtents, extents_type>)
2722 mapping(
const layout_right::mapping<_OExtents>& __other)
2723 : _M_storage(__other)
2726 template<
typename _OExtents>
2727 requires is_constructible_v<_OExtents, extents_type>
2728 constexpr explicit(!(_OExtents::rank() == 0
2729 && is_convertible_v<_OExtents, extents_type>))
2730 mapping(
const typename layout_stride::mapping<_OExtents>& __other)
2731 : _M_storage(__other)
2732 { __glibcxx_assert(*
this == __other); }
2734 template<
typename _RightPaddedMapping>
2735 requires __mdspan::__is_right_padded_mapping<_RightPaddedMapping>
2736 && is_constructible_v<extents_type,
2737 typename _RightPaddedMapping::extents_type>
2739 !is_convertible_v<
typename _RightPaddedMapping::extents_type,
2741 || _S_rank > 1 && (padding_value != dynamic_extent
2742 || _RightPaddedMapping::padding_value == dynamic_extent))
2743 mapping(
const _RightPaddedMapping& __other)
2744 : _M_storage(layout_right{}, __other)
2747 template<
typename _LeftPaddedMapping>
2748 requires (__mdspan::__is_left_padded_mapping<_LeftPaddedMapping>
2749 || __mdspan::__mapping_of<layout_left, _LeftPaddedMapping>)
2751 && is_constructible_v<extents_type,
2752 typename _LeftPaddedMapping::extents_type>
2753 constexpr explicit(!is_convertible_v<
2754 typename _LeftPaddedMapping::extents_type, extents_type>)
2755 mapping(
const _LeftPaddedMapping& __other) noexcept
2756 : _M_storage(layout_left{}, __other)
2759 constexpr mapping& operator=(
const mapping&)
noexcept =
default;
2761 constexpr const extents_type&
2762 extents() const noexcept {
return _M_storage._M_extents; }
2764 constexpr array<index_type, _S_rank>
2765 strides() const noexcept
2767 array<index_type, _S_rank> __ret;
2768 if constexpr (_S_rank > 0)
2769 __ret[_S_rank - 1] = 1;
2770 if constexpr (_S_rank > 1)
2771 __ret[_S_rank - 2] = _M_padstride();
2772 if constexpr (_S_rank > 2)
2773 for(
size_t __i = _S_rank - 2; __i > 0; --__i)
2774 __ret[__i - 1] = __ret[__i] * _M_extent(__i);
2778 constexpr index_type
2779 required_span_size() const noexcept
2780 {
return _M_storage._M_required_span_size(); }
2784 template<__mdspan::__val
id_index_type<index_type>... _Indices>
2785 requires (
sizeof...(_Indices) == _S_rank)
2786 constexpr index_type
2787 operator()(_Indices... __indices)
const noexcept
2789 return __mdspan::__linear_index_rightpad(
2790 extents(), _M_storage._M_stride,
2791 static_cast<index_type
>(
std::move(__indices))...);
2794 static constexpr bool
2795 is_always_exhaustive() noexcept
2796 {
return _PaddedStorage::_M_is_always_exhaustive(); }
2799 is_exhaustive() const noexcept
2800 {
return _M_storage._M_is_exhaustive(); }
2802 static constexpr bool
2803 is_always_unique() noexcept {
return true; }
2805 static constexpr bool
2806 is_unique() noexcept {
return true; }
2808 static constexpr bool
2809 is_always_strided() noexcept {
return true; }
2811 static constexpr bool
2812 is_strided() noexcept {
return true; }
2814 constexpr index_type
2815 stride(rank_type __r)
const noexcept
2817 __glibcxx_assert(__r < _S_rank);
2818 if constexpr (_S_rank <= 1)
2820 else if (__r == _S_rank - 1)
2822 else if (__r == _S_rank - 2)
2823 return _M_padstride();
2825 return static_cast<index_type
>(
2826 static_cast<size_t>(_M_padstride()) *
2827 static_cast<size_t>(__mdspan::__fwd_prod(
2828 extents(), __r + 1, _S_rank - 1)));
2831 template<
typename _RightPaddedMapping>
2832 requires(__mdspan::__is_right_padded_mapping<_RightPaddedMapping>
2833 && _RightPaddedMapping::extents_type::rank() == _S_rank)
2834 friend constexpr bool
2835 operator==(
const mapping& __self,
const _RightPaddedMapping& __other)
2837 {
return __self._M_storage._M_equal(__other); }
2839#if __glibcxx_submdspan
2841 template<
typename... _Slices>
2842 requires (extents_type::rank() ==
sizeof...(_Slices))
2843 friend constexpr auto
2844 submdspan_mapping(
const mapping& __mapping, _Slices... __slices)
2845 {
return __mdspan::__submdspan_mapping_impl(__mapping, __slices...); }
2850 template<
typename _ElementType>
2851 struct default_accessor
2853 static_assert(!is_array_v<_ElementType>,
2854 "ElementType must not be an array type");
2855 static_assert(!is_abstract_v<_ElementType>,
2856 "ElementType must not be an abstract class type");
2858 using offset_policy = default_accessor;
2859 using element_type = _ElementType;
2860 using reference = element_type&;
2861 using data_handle_type = element_type*;
2864 default_accessor() noexcept = default;
2866 template<typename _OElementType>
2867 requires is_convertible_v<_OElementType(*)[], element_type(*)[]>
2869 default_accessor(default_accessor<_OElementType>) noexcept
2873 access(data_handle_type __p,
size_t __i)
const noexcept
2874 {
return __p[__i]; }
2876 constexpr data_handle_type
2877 offset(data_handle_type __p,
size_t __i)
const noexcept
2878 {
return __p + __i; }
2881#ifdef __glibcxx_aligned_accessor
2882 template<
typename _ElementType,
size_t _ByteAlignment>
2883 struct aligned_accessor
2885 static_assert(has_single_bit(_ByteAlignment),
2886 "ByteAlignment must be a power of two");
2887 static_assert(_ByteAlignment >=
alignof(_ElementType));
2889 using offset_policy = default_accessor<_ElementType>;
2890 using element_type = _ElementType;
2891 using reference = element_type&;
2892 using data_handle_type = element_type*;
2894 static constexpr size_t byte_alignment = _ByteAlignment;
2897 aligned_accessor() noexcept = default;
2899 template<typename _OElementType,
size_t _OByteAlignment>
2900 requires (_OByteAlignment >= byte_alignment)
2901 && is_convertible_v<_OElementType(*)[], element_type(*)[]>
2903 aligned_accessor(aligned_accessor<_OElementType, _OByteAlignment>)
2907 template<
typename _OElementType>
2908 requires is_convertible_v<_OElementType(*)[], element_type(*)[]>
2910 aligned_accessor(default_accessor<_OElementType>)
noexcept
2913 template<
typename _OElementType>
2914 requires is_convertible_v<element_type(*)[], _OElementType(*)[]>
2916 operator default_accessor<_OElementType>() const noexcept
2920 access(data_handle_type __p,
size_t __i)
const noexcept
2923 constexpr typename offset_policy::data_handle_type
2924 offset(data_handle_type __p,
size_t __i)
const noexcept
2929 template<
typename _ElementType,
typename _Extents,
2930 typename _LayoutPolicy = layout_right,
2931 typename _AccessorPolicy = default_accessor<_ElementType>>
2934 static_assert(!is_array_v<_ElementType>,
2935 "ElementType must not be an array type");
2936 static_assert(!is_abstract_v<_ElementType>,
2937 "ElementType must not be an abstract class type");
2938 static_assert(__mdspan::__is_extents<_Extents>,
2939 "Extents must be a specialization of std::extents");
2940 static_assert(is_same_v<_ElementType,
2941 typename _AccessorPolicy::element_type>);
2944 using extents_type = _Extents;
2945 using layout_type = _LayoutPolicy;
2946 using accessor_type = _AccessorPolicy;
2947 using mapping_type =
typename layout_type::template mapping<extents_type>;
2948 using element_type = _ElementType;
2949 using value_type = remove_cv_t<element_type>;
2950 using index_type =
typename extents_type::index_type;
2951 using size_type =
typename extents_type::size_type;
2952 using rank_type =
typename extents_type::rank_type;
2953 using data_handle_type =
typename accessor_type::data_handle_type;
2954 using reference =
typename accessor_type::reference;
2956 static constexpr rank_type
2957 rank() noexcept {
return extents_type::rank(); }
2959 static constexpr rank_type
2960 rank_dynamic() noexcept {
return extents_type::rank_dynamic(); }
2962 static constexpr size_t
2963 static_extent(rank_type __r)
noexcept
2964 {
return extents_type::static_extent(__r); }
2966 constexpr index_type
2967 extent(rank_type __r)
const noexcept {
return extents().extent(__r); }
2971 requires (rank_dynamic() > 0)
2972 && is_default_constructible_v<data_handle_type>
2973 && is_default_constructible_v<mapping_type>
2974 && is_default_constructible_v<accessor_type> =
default;
2977 mdspan(
const mdspan& __other) =
default;
2980 mdspan(mdspan&& __other) =
default;
2982 template<__mdspan::__val
id_index_type<index_type>... _OIndexTypes>
2983 requires (
sizeof...(_OIndexTypes) == rank()
2984 ||
sizeof...(_OIndexTypes) == rank_dynamic())
2985 && is_constructible_v<mapping_type, extents_type>
2986 && is_default_constructible_v<accessor_type>
2988 mdspan(data_handle_type __handle, _OIndexTypes... __exts)
2990 _M_mapping(_Extents(
static_cast<index_type
>(
std::move(__exts))...)),
2994 template<
typename _OIndexType,
size_t _Nm>
2995 requires __mdspan::__valid_index_type<const _OIndexType&, index_type>
2996 && (_Nm == rank() || _Nm == rank_dynamic())
2997 && is_constructible_v<mapping_type, extents_type>
2998 && is_default_constructible_v<accessor_type>
2999 constexpr explicit(_Nm != rank_dynamic())
3000 mdspan(data_handle_type __handle, span<_OIndexType, _Nm> __exts)
3001 : _M_accessor(), _M_mapping(extents_type(__exts)),
3002 _M_handle(std::move(__handle))
3005 template<
typename _OIndexType,
size_t _Nm>
3006 requires __mdspan::__valid_index_type<const _OIndexType&, index_type>
3007 && (_Nm == rank() || _Nm == rank_dynamic())
3008 && is_constructible_v<mapping_type, extents_type>
3009 && is_default_constructible_v<accessor_type>
3010 constexpr explicit(_Nm != rank_dynamic())
3011 mdspan(data_handle_type __handle,
const array<_OIndexType, _Nm>& __exts)
3012 : _M_accessor(), _M_mapping(extents_type(__exts)),
3013 _M_handle(std::move(__handle))
3017 mdspan(data_handle_type __handle,
const extents_type& __exts)
3018 requires is_constructible_v<mapping_type, const extents_type&>
3019 && is_default_constructible_v<accessor_type>
3020 : _M_accessor(), _M_mapping(__exts), _M_handle(
std::move(__handle))
3024 mdspan(data_handle_type __handle,
const mapping_type& __mapping)
3025 requires is_default_constructible_v<accessor_type>
3026 : _M_accessor(), _M_mapping(__mapping), _M_handle(
std::move(__handle))
3030 mdspan(data_handle_type __handle,
const mapping_type& __mapping,
3031 const accessor_type& __accessor)
3032 : _M_accessor(__accessor), _M_mapping(__mapping),
3033 _M_handle(std::move(__handle))
3036 template<
typename _OElementType,
typename _OExtents,
typename _OLayout,
3037 typename _OAccessor>
3038 requires is_constructible_v<mapping_type,
3039 const typename _OLayout::template mapping<_OExtents>&>
3040 && is_constructible_v<accessor_type, const _OAccessor&>
3041 constexpr explicit(!is_convertible_v<
3042 const typename _OLayout::template mapping<_OExtents>&, mapping_type>
3043 || !is_convertible_v<const _OAccessor&, accessor_type>)
3044 mdspan(
const mdspan<_OElementType, _OExtents, _OLayout, _OAccessor>&
3046 : _M_accessor(__other.accessor()), _M_mapping(__other.mapping()),
3047 _M_handle(__other.data_handle())
3049 static_assert(is_constructible_v<data_handle_type,
3050 const typename _OAccessor::data_handle_type&>);
3051 static_assert(is_constructible_v<extents_type, _OExtents>);
3055 operator=(
const mdspan& __other) =
default;
3058 operator=(mdspan&& __other) =
default;
3060 template<__mdspan::__val
id_index_type<index_type>... _OIndexTypes>
3061 requires (
sizeof...(_OIndexTypes) == rank())
3063 operator[](_OIndexTypes... __indices)
const
3065 if constexpr (rank() == 0)
3066 return _M_accessor.access(_M_handle, _M_mapping());
3067 else if constexpr (!(is_integral_v<_OIndexTypes> && ...))
3068 return operator[](__index_int_t<_OIndexTypes>(
std::move(__indices))...);
3071 auto __is_valid_index = [&]<
typename _OIntType>(
size_t __dim, _OIntType __index)
3073 if constexpr (is_signed_v<_OIntType>)
3076 return std::cmp_less(__index, extents().extent(__dim));
3078 auto __is_multi_index = [&]<
size_t... _Counts>(
index_sequence<_Counts...>)
3079 {
return (__is_valid_index(_Counts, __indices) && ...); };
3081 __glibcxx_assert(__is_multi_index(make_index_sequence<rank()>()));
3082 auto __index = _M_mapping(
static_cast<index_type
>(__indices)...);
3083 return _M_accessor.access(_M_handle, __index);
3087 template<
typename _OIndexType>
3088 requires __mdspan::__valid_index_type<const _OIndexType&, index_type>
3090 operator[](span<_OIndexType, rank()> __indices)
const
3096 __index_int_t<_OIndexType>(as_const(__indices[_Counts]))...);
3098 return __call(make_index_sequence<rank()>());
3101 template<
typename _OIndexType>
3102 requires __mdspan::__valid_index_type<const _OIndexType&, index_type>
3104 operator[](
const array<_OIndexType, rank()>& __indices)
const
3105 {
return operator[](span<
const _OIndexType, rank()>(__indices)); }
3107#if __cplusplus > 202302L
3108 template<__mdspan::__val
id_index_type<index_type>... _OIndexTypes>
3109 requires (
sizeof...(_OIndexTypes) == rank())
3111 at(_OIndexTypes... __indices)
const
3113 if constexpr (rank() == 0)
3114 return _M_accessor.access(_M_handle, _M_mapping());
3115 else if constexpr (!(is_integral_v<_OIndexTypes> && ...))
3116 return at(__index_int_t<_OIndexTypes>(
std::move(__indices))...);
3119 auto __check_bound = [&]<
typename _OIntType>(
size_t __dim, _OIntType __index)
3121 if constexpr (is_signed_v<_OIntType>)
3123 std::__throw_out_of_range_fmt(
3124 __N(
"mdspan::at: %zuth index is negative"), __dim);
3126 const auto __ext = extents().extent(__dim);
3127 if (std::cmp_greater_equal(__index, __ext))
3128 std::__throw_out_of_range_fmt(
3129 __N(
"mdspan::at: %zuth index (which is %zu)"
3130 " >= extent(%zu) (which is %zu)"),
3131 __dim,
size_t(__index), __dim,
size_t(__ext));
3133 auto __check_bounds = [&]<
size_t... _Counts>(
index_sequence<_Counts...>)
3134 { (__check_bound(_Counts, __indices), ...); };
3136 __check_bounds(make_index_sequence<rank()>());
3137 auto __index = _M_mapping(
static_cast<index_type
>(__indices)...);
3138 return _M_accessor.access(_M_handle, __index);
3142 template<
typename _OIndexType>
3143 requires __mdspan::__valid_index_type<const _OIndexType&, index_type>
3145 at(span<_OIndexType, rank()> __indices)
const
3151 __index_int_t<_OIndexType>(as_const(__indices[_Counts]))...);
3153 return __call(make_index_sequence<rank()>());
3156 template<
typename _OIndexType>
3157 requires __mdspan::__valid_index_type<const _OIndexType&, index_type>
3159 at(
const array<_OIndexType, rank()>& __indices)
const
3160 {
return at(span<
const _OIndexType, rank()>(__indices)); }
3164 size() const noexcept
3166 __glibcxx_assert(cmp_less_equal(_M_mapping.required_span_size(),
3169 return size_type(__mdspan::__size(extents()));
3174 empty() const noexcept
3175 {
return __mdspan::__empty(extents()); }
3177 friend constexpr void
3178 swap(mdspan& __x, mdspan& __y)
noexcept
3181 swap(__x._M_mapping, __y._M_mapping);
3182 swap(__x._M_accessor, __y._M_accessor);
3183 swap(__x._M_handle, __y._M_handle);
3186 constexpr const extents_type&
3187 extents() const noexcept {
return _M_mapping.extents(); }
3189 constexpr const data_handle_type&
3190 data_handle() const noexcept {
return _M_handle; }
3192 constexpr const mapping_type&
3193 mapping() const noexcept {
return _M_mapping; }
3195 constexpr const accessor_type&
3196 accessor() const noexcept {
return _M_accessor; }
3200 static constexpr bool
3201 is_always_unique() noexcept(noexcept(mapping_type::is_always_unique()))
3202 {
return mapping_type::is_always_unique(); }
3204 static constexpr bool
3205 is_always_exhaustive()
3206 noexcept(noexcept(mapping_type::is_always_exhaustive()))
3207 {
return mapping_type::is_always_exhaustive(); }
3209 static constexpr bool
3211 noexcept(noexcept(mapping_type::is_always_strided()))
3212 {
return mapping_type::is_always_strided(); }
3215 is_unique() const noexcept(noexcept(_M_mapping.is_unique()))
3216 {
return _M_mapping.is_unique(); }
3219 is_exhaustive() const noexcept(noexcept(_M_mapping.is_exhaustive()))
3220 {
return _M_mapping.is_exhaustive(); }
3223 is_strided() const noexcept(noexcept(_M_mapping.is_strided()))
3224 {
return _M_mapping.is_strided(); }
3226 constexpr index_type
3227 stride(rank_type __r)
const {
return _M_mapping.stride(__r); }
3230 template<
typename _OIndexType>
3231 using __index_int_t = std::__conditional_t<
3232 is_integral_v<_OIndexType>, _OIndexType, index_type>;
3234 [[no_unique_address]] accessor_type _M_accessor = accessor_type();
3235 [[no_unique_address]] mapping_type _M_mapping = mapping_type();
3236 [[no_unique_address]] data_handle_type _M_handle = data_handle_type();
3239 template<
typename _CArray>
3240 requires is_array_v<_CArray> && (rank_v<_CArray> == 1)
3242 -> mdspan<remove_all_extents_t<_CArray>,
3243 extents<size_t, extent_v<_CArray, 0>>>;
3245 template<
typename _Po
inter>
3246 requires is_pointer_v<remove_reference_t<_Pointer>>
3248 -> mdspan<remove_pointer_t<remove_reference_t<_Pointer>>, extents<size_t>>;
3250 template<
typename _ElementType,
typename... _Integrals>
3251 requires (is_convertible_v<_Integrals, size_t> && ...)
3252 && (
sizeof...(_Integrals) > 0)
3253 explicit mdspan(_ElementType*, _Integrals...)
3254 -> mdspan<_ElementType,
3255 extents<size_t, __detail::__maybe_static_ext<_Integrals>...>>;
3257 template<
typename _ElementType,
typename _OIndexType,
size_t _Nm>
3258 mdspan(_ElementType*, span<_OIndexType, _Nm>)
3259 -> mdspan<_ElementType, dextents<size_t, _Nm>>;
3261 template<
typename _ElementType,
typename _OIndexType,
size_t _Nm>
3262 mdspan(_ElementType*,
const array<_OIndexType, _Nm>&)
3263 -> mdspan<_ElementType, dextents<size_t, _Nm>>;
3265 template<
typename _ElementType,
typename _IndexType,
size_t... _ExtentsPack>
3266 mdspan(_ElementType*,
const extents<_IndexType, _ExtentsPack...>&)
3267 -> mdspan<_ElementType, extents<_IndexType, _ExtentsPack...>>;
3269 template<
typename _ElementType,
typename _MappingType>
3270 mdspan(_ElementType*,
const _MappingType&)
3271 -> mdspan<_ElementType,
typename _MappingType::extents_type,
3272 typename _MappingType::layout_type>;
3276 template<
typename _MappingType,
typename _AccessorType>
3277 mdspan(
typename _AccessorType::data_handle_type,
const _MappingType&,
3278 const _AccessorType&)
3279 -> mdspan<
typename _AccessorType::element_type,
3280 typename _MappingType::extents_type,
3281 typename _MappingType::layout_type, _AccessorType>;
3283#if __glibcxx_submdspan
3286 template<
typename _IndexType,
typename _Slice>
3288 __canonical_index(_Slice&& __slice)
3290 if constexpr (__detail::__integral_constant_like<_Slice>)
3292 static_assert(__is_representable_integer<_IndexType>(_Slice::value));
3293 static_assert(_Slice::value >= 0);
3294 return std::cw<_IndexType(_Slice::value)>;
3297 return __mdspan::__index_type_cast<_IndexType>(
std::move(__slice));
3300 template<
typename _IndexType,
3301 typename _OffsetType,
typename _SpanType,
typename _StrideType>
3303 __canonical_range_slice(_OffsetType __offset, _SpanType __span,
3304 _StrideType __stride)
3306 if constexpr (is_same_v<_SpanType, constant_wrapper<_IndexType(0)>>
3307 || is_same_v<_StrideType, constant_wrapper<_IndexType(1)>>)
3308 return extent_slice{
3311 .stride = cw<_IndexType(1)>
3313 else if constexpr (__is_constant_wrapper_v<_StrideType>)
3315 static_assert(_StrideType::value > 0);
3316 if constexpr (__is_constant_wrapper_v<_SpanType>)
3317 return extent_slice{
3319 .extent = cw<_IndexType(1 + (_SpanType::value - 1) / _StrideType::value)>,
3323 return extent_slice{
3325 .extent = _IndexType(__span > 0 ? 1 + (__span - 1) / _StrideType::value : 0),
3329 else if (__span == 0 || __stride == 1)
3330 return extent_slice{
3332 .extent = _IndexType(__span),
3333 .stride = _IndexType(1)
3337 __glibcxx_assert(__stride > 0);
3338 return extent_slice{
3340 .extent = _IndexType(1 + (__span - 1) / __stride),
3346 template<
typename _IndexType,
typename _Slice>
3348 __slice_cast(_Slice&& __slice)
3350 using _SliceType = remove_cvref_t<_Slice>;
3351 if constexpr (is_convertible_v<_SliceType, full_extent_t>)
3352 return static_cast<full_extent_t
>(
std::move(__slice));
3353 else if constexpr (is_convertible_v<_SliceType, _IndexType>)
3354 return __mdspan::__canonical_index<_IndexType>(
std::move(__slice));
3355 else if constexpr (__is_extent_slice<_SliceType>)
3356 return extent_slice{
3357 .offset = __mdspan::__canonical_index<_IndexType>(
std::move(__slice.offset)),
3358 .extent = __mdspan::__canonical_index<_IndexType>(
std::move(__slice.extent)),
3359 .stride = __mdspan::__canonical_index<_IndexType>(
std::move(__slice.stride))
3361 else if constexpr (__is_range_slice<_SliceType>)
3364 = __mdspan::__canonical_index<_IndexType>(
std::move(__slice.first));
3366 = __mdspan::__canonical_index<_IndexType>(
std::move(__slice.last));
3367 return __mdspan::__canonical_range_slice<_IndexType>(
3369 __mdspan::__canonical_index<_IndexType>(__last - __first),
3370 __mdspan::__canonical_index<_IndexType>(
std::move(__slice.stride)));
3374 auto [__sbegin, __send] =
std::move(__slice);
3376 = __mdspan::__canonical_index<_IndexType>(
std::move(__sbegin));
3378 = __mdspan::__canonical_index<_IndexType>(
std::move(__send));
3380 = __mdspan::__canonical_index<_IndexType>(__cend - __cbegin);
3381 return __mdspan::__canonical_range_slice<_IndexType>(
3382 __cbegin, __cspan, cw<_IndexType(1)>);
3386 template<
typename _IndexType,
size_t _Extent,
typename _OIndexType>
3388 __check_inrange_index(
const extents<_IndexType, _Extent>& __ext,
3389 const _OIndexType& __idx)
3391 if constexpr (__is_constant_wrapper_v<_OIndexType>
3392 && _Extent != dynamic_extent)
3394 static_assert(_OIndexType::value >= 0);
3395 static_assert(std::cmp_less(_OIndexType::value, _Extent));
3398 __glibcxx_assert(__idx < __ext.extent(0));
3401 template<
typename _IndexType,
size_t _Extent,
typename _OIndexType>
3403 __check_valid_index(
const extents<_IndexType, _Extent>& __ext,
3404 const _OIndexType& __idx)
3406 if constexpr (__is_constant_wrapper_v<_OIndexType>
3407 && _Extent != dynamic_extent)
3409 static_assert(_OIndexType::value >= 0);
3410 static_assert(std::cmp_less_equal(_OIndexType::value, _Extent));
3413 __glibcxx_assert(__idx <= __ext.extent(0));
3416 template<
typename _IndexType,
size_t _Extent,
typename _Slice>
3418 __check_valid_slice(
const extents<_IndexType, _Extent>& __ext,
3419 const _Slice& __slice)
3421 if constexpr (__is_extent_slice<_Slice>)
3423 __mdspan::__check_valid_index(__ext, __slice.extent);
3428 if constexpr (is_same_v<
typename _Slice::extent_type,
3429 constant_wrapper<_IndexType(0)>>)
3430 __mdspan::__check_valid_index(__ext, __slice.offset);
3431 else if constexpr (is_same_v<
typename _Slice::extent_type,
3432 constant_wrapper<_IndexType(1)>>)
3433 __mdspan::__check_inrange_index(__ext, __slice.offset);
3434 else if constexpr (__is_constant_wrapper_v<typename _Slice::extent_type>)
3436 __mdspan::__check_inrange_index(__ext, __slice.offset);
3437 if constexpr (__is_constant_wrapper_v<typename _Slice::stride_type>)
3438 static_assert(_Slice::stride_type::value > 0);
3440 __glibcxx_assert(__slice.stride > 0);
3442 if constexpr (_Extent != dynamic_extent
3443 && __is_constant_wrapper_v<typename _Slice::offset_type>)
3444 static_assert(std::cmp_greater_equal(
3445 _Extent - _Slice::offset_type::value,
3446 _Slice::extent_type::value));
3447 if constexpr (_Extent != dynamic_extent
3448 && __is_constant_wrapper_v<typename _Slice::stride_type>)
3449 static_assert(std::cmp_greater(
3451 (_Slice::extent_type::value - 1) * _Slice::stride_type::value));
3453 if constexpr (_Extent != dynamic_extent
3454 && __is_constant_wrapper_v<typename _Slice::offset_type>
3455 && __is_constant_wrapper_v<typename _Slice::stride_type>)
3456 static_assert(std::cmp_greater(
3457 _Extent - _Slice::offset_type::value,
3458 (_Slice::extent_type::value - 1) * _Slice::stride_type::value));
3460 __glibcxx_assert(std::cmp_greater(
3461 __ext.extent(0) - __slice.offset,
3462 (_Slice::extent_type::value - 1) * __slice.stride));
3464 else if constexpr (is_same_v<
typename _Slice::stride_type,
3465 constant_wrapper<_IndexType(1)>>)
3467 __mdspan::__check_valid_index(__ext, __slice.offset);
3468 __glibcxx_assert(std::cmp_greater_equal(
3469 __ext.extent(0) - __slice.offset,
3472 else if (__slice.extent == 0)
3473 __mdspan::__check_valid_index(__ext, __slice.offset);
3476 __glibcxx_assert(__slice.offset < __ext.extent(0));
3477 __glibcxx_assert(__slice.extent == 1 || __slice.stride > 0);
3478 __glibcxx_assert(__slice.extent == 1 || std::cmp_greater(
3479 __ext.extent(0) - __slice.offset,
3480 (__slice.extent - 1) * __slice.stride));
3483 else if constexpr (!is_same_v<_Slice, full_extent_t>)
3484 __mdspan::__check_inrange_index(__ext, __slice);
3487 template<
typename _Extents,
typename... _Slices>
3489 __check_valid_slices(
const _Extents& __exts,
const _Slices&... __slices)
3491 constexpr auto __rank = _Extents::rank();
3494 ((__mdspan::__check_valid_slice(__extract_extent<_Is>(__exts),
3495 __slices...[_Is])),...);
3497 __impl(make_index_sequence<__rank>());
3500 template<
typename _Slice>
3501 using __full_extent_t = std::full_extent_t;
3504 void submdspan_mapping() =
delete;
3506 template<
typename _Mapping,
typename... _Slices>
3507 concept __sliceable_mapping =
requires(
const _Mapping __m, _Slices... __slices)
3509 { submdspan_mapping(__m, __slices...) } -> __submdspan_mapping_result;
3512 template<
typename _Mapping,
typename... _Slices>
3514 __submapping(
const _Mapping& __mapping, _Slices... __slices)
3516 __mdspan::__check_valid_slices(__mapping.extents(), __slices...);
3517 return submdspan_mapping(__mapping, __slices...);
3521 template<
typename _IndexType,
size_t... _Extents,
typename... _RawSlices>
3522 requires (
sizeof...(_RawSlices) ==
sizeof...(_Extents))
3524 subextents(
const extents<_IndexType, _Extents...>& __exts,
3525 _RawSlices... __raw_slices)
3527 auto __impl = [&__exts](
auto... __slices)
3529 __mdspan::__check_valid_slices(__exts, __slices...);
3530 return __mdspan::__subextents(__exts, __slices...);
3532 return __impl(__mdspan::__slice_cast<_IndexType>(__raw_slices)...);
3535 template<
typename _IndexType,
size_t... _Extents,
typename... _RawSlices>
3536 requires (
sizeof...(_Extents) ==
sizeof...(_RawSlices))
3538 canonical_slices(
const extents<_IndexType, _Extents...>& __exts,
3539 _RawSlices... __raw_slices)
3541 auto __impl = [&__exts](
auto... __slices)
3543 __mdspan::__check_valid_slices(__exts, __slices...);
3546 return __impl(__mdspan::__slice_cast<_IndexType>(__raw_slices)...);
3549 template<
typename _ElementType,
typename _Extents,
typename _Layout,
3550 typename _Accessor,
typename... _RawSlices>
3551 requires (
sizeof...(_RawSlices) == _Extents::rank()
3552 && __mdspan::__sliceable_mapping<typename _Layout::template mapping<_Extents>,
3553 __mdspan::__full_extent_t<_RawSlices>...>)
3556 const mdspan<_ElementType, _Extents, _Layout, _Accessor>& __md,
3557 _RawSlices... __raw_slices)
3559 using _IndexType =
typename _Extents::index_type;
3560 auto [__mapping, __offset] = __mdspan::__submapping(
3561 __md.mapping(), __mdspan::__slice_cast<_IndexType>(__raw_slices)...);
3563 __md.accessor().offset(__md.data_handle(), __offset),
3565 typename _Accessor::offset_policy(__md.accessor()));
3569_GLIBCXX_END_NAMESPACE_VERSION
constexpr _Tp * assume_aligned(_Tp *__ptr) noexcept
Inform the compiler that a pointer is aligned.
typename make_unsigned< _Tp >::type make_unsigned_t
Alias template for make_unsigned.
constexpr tuple< typename __decay_and_strip< _Elements >::__type... > make_tuple(_Elements &&... __args)
Create a tuple containing copies of the arguments.
constexpr std::remove_reference< _Tp >::type && move(_Tp &&__t) noexcept
Convert a value to an rvalue.
constexpr _Tp && forward(typename std::remove_reference< _Tp >::type &__t) noexcept
Forward an lvalue.
ISO C++ entities toplevel namespace is std.
make_integer_sequence< size_t, _Num > make_index_sequence
Alias template make_index_sequence.
integer_sequence< size_t, _Idx... > index_sequence
Alias template index_sequence.
__numeric_traits_integer< _Tp > __int_traits
Convenience alias for __numeric_traits<integer-type>.