1. Revision History
1.1. P0009r7: Post 2018-06-Rapperswil Mailing
-
wording reworked based on guidance: LWG review at 2018-06-Rapperswil
-
usage of
span
requires reference to C++20 working draft -
namespace for library TS
std::experimental::fundamentals_v3
1.2. P0009r6 : Pre 2018-06-Rapperswil Mailing
P0009r5 was not taken up at 2018-03-Jacksonville meeting. Related LEWG review of P0900 at 2018-03-Jacksonville meeting
LEWG Poll: We want the ability to customize the access to elements of span (ability to restrict, etc):
span<T, N, Accessor=...>
SF | F | N | A | SA |
---|---|---|---|---|
1 | 1 | 1 | 2 | 8 |
LEWG Poll: We want the customization of basic_mdspan
to be two
concepts Mapper
and Accessor
(akin to Allocator
design).
basic_mdspan<T, Extents, Mapper, Accessor> mdspan<T, N...>
SF | F | N | A | SA |
---|---|---|---|---|
3 | 4 | 5 | 1 | 0 |
LEWG Poll: We want the customization of basic_mdspan
to be an
arbitrary (and potentially user-extensible) list of properties.
basic_mdspan<T, Extents, Properties...>
SF | F | N | A | SA |
---|---|---|---|---|
1 | 2 | 2 | 6 | 2 |
Changes from P0009r5 due to related LEWG reviews:
-
Replaced variadic property list with extents, layout mapping, and accessor properties.
-
Incorporated P0454r1.
-
Added accessor policy concept.
-
Renamed
mdspan
tobasic_mdspan
. -
Added a
mdspan
alias tobasic_mdspan
.
-
1.3. P0009r5 : Pre 2018-03-Jacksonville Mailing
LEWG review of P0009r4 at 2017-11-Albuquerque meeting
LEWG Poll: We should be able to index with span<int type[N]>
(in
addition to array).
SF | F | N | A | SA |
---|---|---|---|---|
2 | 11 | 1 | 1 | 0 |
Against comment - there is not a proven needs for this feature.
LEWG Poll: We should be able to index with 1d mdspan
.
SF | F | N | A | SA |
---|---|---|---|---|
0 | 8 | 7 | 0 | 0 |
LEWG Poll: We should put the requirement on "rank() <= N" back to "rank()==N".
Unanimous consent
LEWG Poll: With the editorial changes from small group, plus the above polls, forward this to LWG for Fundamentals v3.
Unanimous consent
Changes from P0009r4:
-
Removed nullptr constructor.
-
Added constexpr to indexing operator.
-
Indexing operator requires that
rank()==sizeof...(indices)
. -
Fixed typos in examples and moved them to appendix.
-
Converted note on how extentions to access properties may cause reference to be a proxy type to an "see below" to make it normative.
1.4. P0009r4 : Pre 2017-11-Albuquerque Mailing
LEWG review at 2017-03-Kona meeting
LEWG review of P0546r1 at 2017-03-Kona meeting
LEWG Poll: Should we have a single template that covers both single and multi-dimensional spans?
SF | F | N | A | SA |
---|---|---|---|---|
1 | 6 | 2 | 6 | 3 |
Changes from P0009r3:
-
Align with P0122r5 spanproposal.
-
Rename to
mdspan
, multidimensional span, to align withspan
. -
Move preferred array extents mechanism to appendix.
-
Expose codomain as a
span
. -
Add layout mapping concept.
1.5. P0009r3 : Post 2016-06-Oulu Mailing
LEWG did not like the name array_ref
, and suggested the following
alternatives: - sci_span
- numeric_span
- multidimensional_span
- multidim_span
- mdspan
- md_span
- vla_span
- multispan
- multi_span
LEWG Poll: Are member begin()
/end()
still good?
SF | F | N | A | SA |
---|---|---|---|---|
0 | 2 | 4 | 3 | 1 |
array_ref
?
SF | F | N | A | SA |
---|---|---|---|---|
0 | 1 | 3 | 2 | 3 |
LEWG Poll: Want a separate proposal to explore iteration design space?
SF | F | N | A | SA |
---|---|---|---|---|
9 | 1 | 0 | 0 | 0 |
Changes from P0009r2:
-
Removed iterator support; a future paper will be written on the subject.
-
Noted difference between multidimensional array versus language’s array-of-array-of-array...
-
Clearly describe requirements for the embedded type aliases (
element_type
,reference
, etc). -
Expanded description of how the variadic properties list would work.
-
Stopped allowing
array_ref<T[N]>
in addition toarray_ref<extents<N>>
. -
Clarified domain, codomain, and domain -> codomain mapping specifications.
-
Consistently use extent and extents for the multidimensional index space.
1.6. P0009r2 : Pre 2016-06-Oulu Mailing
LEWG review at 2016-02-Jacksonville.
Changes from P0009r1:
-
Adding details for extensibility of layout mapping.
-
Move motivation, examples, and relaxed incomplete array type proposal to separate papers.
1.7. P0009r1 : Pre 2016-02-Jacksonville Mailing
LEWG Poll: What should this feature be called?
Name | # |
---|---|
view
| 5 |
span
| 9 |
array_ref
| 6 |
slice
| 6 |
array_view
| 6 |
ref
| 0 |
array_span
| 7 |
basic_span
| 1 |
object_span
| 3 |
field
| 0 |
LEWG Poll: Do we want 0-length static extents?
SF | F | N | A | SA |
---|---|---|---|---|
3 | 4 | 2 | 3 | 0 |
LEWG POLL: Do we want the language to support syntaxes like X[3][][][5]
?
Syntax | # |
---|---|
view<int[3][0][][5], property1>
| 12 |
view<int, dimension<3, 0, dynamic_extent, 5>, property1>
| 4 |
view<int[3][0][dynamic_extent][5], property1>
| 5 |
view<int, 3, 0, dynamic_extent, 5, property1>
| 4 |
view<int, 3, 0, dynamic_extent, 5, properties<property1>>
| 2 |
view<arr<int, 3, 0, dynamic_extent, 5>, property1>
| 4 |
view<int[3][0][][5], properties<property1>>
| 9 |
LEWG POLL: Do we want the variadic property list in template args
(either raw or in properties<>
)? Note there is no precedence for this
in the library.
SF | F | N | A | SA |
---|---|---|---|---|
3 | 6 | 3 | 0 | 0 |
LEWG POLL: Do we want the per-view bounds-checking knob?
SF | F | N | A | SA |
---|---|---|---|---|
3 | 4 | 1 | 2 | 1 |
Changes from P0009r0:
-
Renamed
view
toarray_ref
. -
How are users allowed to add properties? Needs elaboration in paper.
-
view<int[][][]>::layout
should be named. -
Rename
is_regular
(possibly tois_affine
) to avoid overloading the term with theRegular
concept. -
Make static span(), operator(), constructor, etc variadic.
-
Demonstrate the need for improper access in the paper.
-
In
operator()
, take integral types by value.
1.8. P0009r0 : Pre 2015-10-Kona Mailing
Original non-owning multidimensional array reference (view
) paper with
motivation, specification, and examples.
1.9. Related Activity
Related LEWG review of P0546r1 at 2017-11-Albuquerque meeting
LEWG Poll: span
should specify the dynamic extent as the element
type of the first template parameter rather than the (current) second
template parameter
SF | F | N | A | SA |
---|---|---|---|---|
5 | 3 | 2 | 2 | 0 |
LEWG Poll: span
should support the addition of access properties
variadic template parameters
SF | F | N | A | SA |
---|---|---|---|---|
0 | 10 | 1 | 5 | 0 |
Authors agreed to bring a separate paper ([P0900r0]) discussing how the variadic properties will work.
2. Description
The proposed polymorphic multidimensional array reference (mdspan
)
defines types and functions for mapping indices from the domain, a multidimensional index space, to the codomain, elements of a
contiguous span of objects. A multidimensional index space is defined as
the Cartesian product of integer extents, [0..N0) * [0..N1) * [0..N2)
....
An mdspan
has two policies: the layout mapping and the accessor. The layout mapping specifies the formula, and
properties of the formula, for mapping a multi-index from the domain to
an element in the codomain. The accessor is an extension point that
allows modification of how elements are accessed. For example, the
Accessors paper (P0367) proposed a rich set of potential access
properties.
A multidimensional array is not an array-of-array-of-array-of-array...
The multidimensional array abstraction has been fundamental to numerical computations for over five decades. However, the C/C++ language provides only a one-dimensional array abstraction which can be composed into array-of-array-of-array... types. While such types have some similarity to multidimensional arrays, they do not provide adequate multidimensional array functionality of this proposal. Two critical functionality differences are (1) multiple dynamic extents and (2) polymorphic mapping of multi-indices to element objects.
Optimized Implementation of Layout Mapping
The layout mapping of a multi-index is intended to be an O(1) constexpr
operation that is trivially inlined and optimized. Note that Fortran
compilers' optimizations include loop invariant code motion, including
partial evaluation of multi-index layout mappings when indices are
loop-invariant.
3. Editing Notes
The proposed changes are relative to the working draft of the standard as of N4750.
The � character is used to denote a placeholder section number, table number, or paragraph number which the editor shall determine.
Add the header <mdspan>
to table 16 in [headers].
Add the header <mdspan>
to Table 76 in 26.1 [containers.general] below
the listing for <span>
.
4. Wording
Text in blockquotes is not proposed wordingThe � character is used to denote a placeholder section number which the editor shall determine.
Copy [views] subclause (currently 26.7 in n4750) which contains the wording forspan
anddynamic_extent
which is needed forbasic_mdspan
Add the following paragraphs to *[views.general]:
�. The header <mdspan>
defines the view basic_mdspan
, the type alias mdspan
,
and other facilities for interacting with these views.
The basic_mdspan
class template maps a multi-index within a multi-index domain to a reference an element in the codomain span
.
�. The subspan
function generates a basic_mdspan
with a domain
contained within the input basic_mdspan
domain and codomain contained
within the input basic_mdspan
codomain.
Add the following subclauses to the end of the [views] subclause (currently 26.7 in n4750):
26.7.� Header <mdspan>
synopsis [mdspan.syn]
namespace std { namespace experimental { namespace fundamentals_v3 { // [mdspan.extents], class template extents template<ptrdiff_t... StaticExtents> class extents; // [mdspan.layout], Layout mapping policies class layout_left; class layout_right; class layout_stride; // [mdspan.accessor.basic], class template accessor_basic template<class ElementType> class accessor_basic; // [mdspan.basic], class template mdspan template<class ElementType, class Extents, class LayoutPolicy = layout_right, class Accessor = accessor_basic<ElementType>> class basic_mdspan; template<class T, ptrdiff_t... Extents> using mdspan = basic_mdspan<T, extents<Extents...>>; // [mdspan.extents.compare], extents comparison operators template<ptrdiff_t... LHS, ptrdiff_t... RHS> constexpr bool operator==(const extents<LHS...>& lhs, const extents<RHS...>& rhs) noexcept; template<ptrdiff_t... LHS, ptrdiff_t... RHS> constexpr bool operator!=(const extents<LHS...>& lhs, const extents<RHS...>& rhs) noexcept; // [mdspan.subspan], subspan creation template<class ElementType, class Extents, class LayoutPolicy, class Accessor, class... SliceSpecifiers> basic_mdspan<ElementType, /* see-below */> subspan(const basic_mdspan<ElementType, Extents, LayoutPolicy, Accessor>&, SliceSpecifiers...) noexcept; // tag supporting subspan struct all_type { explicit all_type() = default; }; inline constexpr all_type all = all_type{}; }}}
26.7.� Class template extents
[mdspan.extents]
26.7.�.1 Overview [mdspan.extents.overview]
-
An
extents
object defines a multidimensional index space which is the Cartesian product of integers extents[0..N0) * [0..N1) *
.... -
The dynamic extents of an
extents
object correspond to theStaticExtents
template parameters that are equal todynamic_extent
. Let DynamicRank[i] denote the index of the ith such extent in theStaticExtents
template parameter pack, and let DynamicIndex[r] indicate the number of such extents in the first r entries of theStaticExtents
parameter pack -
An
extents
object is expected to store dynamic extents. [Note: An implementation should not consume storage for static extents. — end note] -
If any of
StaticExtents
are negative and not equal todynamic_extent
, the program is ill-formed.
namespace std { namespace experimental { namespace fundamentals_v3 { template<ptrdiff_t... StaticExtents> class extents { public: // types using index_type = ptrdiff_t; // [mdspan.extents.cons], Constructors and assignment constexpr extents() noexcept; constexpr extents(const extents&) noexcept; constexpr extents(extents&&) noexcept; template<class... IndexType> constexpr extents(IndexType... dynamic_extents) noexcept; template<class IndexType, size_t rank_dynamic> constexpr extents(const array<IndexType, rank_dynamic>&) noexcept; template<ptrdiff_t... OtherStaticExtents> constexpr extents(const extents<OtherStaticExtents...>& other); ~extents() = default; constexpr extents& operator=(const extents&) noexcept = default; constexpr extents& operator=(extents&&) noexcept = default; template<ptrdiff_t... OtherStaticExtents> constexpr extents& operator=(const extents<OtherStaticExtents...>& other); // [mdspan.extents.obs], Observers of the domain multi-index space static constexpr size_t rank() noexcept; static constexpr size_t rank_dynamic() noexcept; static constexpr index_type static_extent(size_t) noexcept; constexpr index_type extent(size_t) const noexcept; private: array<index_type, rank_dynamic()> dynamic_extents_; // exposition only }; }}}
26.7.�.2 Constructors and assignment [mdspan.extents.cons]
constexpr extents() noexcept;
-
Effects: Aggregate-initializes
dynamic_extents_
to{ }
-
Postconditions:
extent(r)
ifstatic_extent(r)==dynamic_extent
for allr
in the range[0, rank())
constexpr extents(const extents& other); constexpr extents(extents&& other);
-
Effects: Initializes
dynamic_extents_
withother.dynamic_extents_
-
Postconditions:
extent(r)==other.extent(r)
for allr
in the range[0, rank())
template<ptrdiff_t... OtherStaticExtents> constexpr extents(const extents<OtherStaticExtents...>& other);
-
Requires: For each
r
in the range[0, rank())
, ifstatic_extent(r)!=dynamic_extent
, thenstatic_extent(r)==other.extent(r)
. -
Effects: For each
r
in the range[0, rank())
, ifstatic_extent(r)==dynamic_extent
, initializesdynamic_extents_[
DynamicRank[r
]]
withother.extent(r)
. -
Throws: Nothing.
-
Postconditions:
*this==other
-
Remarks: This constructor shall not participate in overload resolution unless
sizeof...(StaticExtents)==sizeof...(OtherStaticExtents)
.
template<class... IndexType> constexpr extents(IndexType... dynamic_extents) noexcept;
-
Requires:
((dynamic_extents>=0) && ...)
-
Effects: Aggregate-initializes
dynamic_extents_
to{dynamic_extents...}
-
Postconditions:
extent(
DynamicRank[i])
is equal to the ith entry in the parameter packdynamic_extents
-
Remarks: This constructor shall not participate in overload resolution unless:
-
(is_convertible_v<IndexType, index_type> && ...)
-
and
sizeof...(dynamic_extents)==rank_dynamic()
-
template<class IndexType, size_t rank_dynamic> constexpr extents(const array<IndexType, rank_dynamic> & dynamic_extents) noexcept;
-
Requires:
dynamic_extents[i]>=0
for alli
where 0 <=i
<rank_dynamic()
-
Effects: Initializes
dynamic_extents_
withdynamic_extents
-
Postconditions:
extent(
DynamicRank[i])
is equal todynamic_extents[i]
-
Remarks: This constructor shall not participate in overload resolution unless:
-
is_convertible_v<IndexType, index_type>
-
template<ptrdiff_t... OtherStaticExtents> constexpr extents& operator=(const extents<OtherStaticExtents...>& other);
-
Requires: For each
r
in the range[0, rank())
, ifstatic_extent(r)!=dynamic_extent
, thenstatic_extent(r)==other.extent(r)
. -
Effects: For each
r
in the range[0, rank())
, ifstatic_extent(r)==dynamic_extent
, assignsdynamic_extents_[
DynamicRank[r
]]
toother.extent(r)
. -
Throws: Nothing.
-
Postconditions:
*this==other
-
Returns:
*this
. -
Remarks: This constructor shall not participate in overload resolution unless
sizeof...(StaticExtents)==sizeof...(OtherStaticExtents)
.
26.7.�.3 Observers of the domain multi-index space [mdspan.extents.obs]
static constexpr size_t rank() const noexcept;
-
Returns:
sizeof...(StaticExtents)
static constexpr size_t rank_dynamic() const noexcept;
-
Returns:
((StaticExtents==dynamic_extent)+...)
[Note: This is the number of dynamic extents —end note]
static constexpr index_type static_extent(size_t r) const noexcept;
-
Returns: The
r
th entry in theStaticExtents
parameter pack if 0 <=r
<rank()
, or 1 otherwise.
constexpr index_type extent(size_t r) const noexcept;
-
Returns:
-
If
static_extent(r)==dynamic_extent
, thendynamic_extents_[
DynamicRank[r
]]
. -
Otherwise,
static_extent(r)
.
-
26.7.�.4 extents
comparison operators [mdspan.extents.compare]
template<ptrdiff_t... LHS, ptrdiff_t... RHS> constexpr bool operator==(const extents<LHS...>& lhs, const extents<RHS...>& rhs) noexcept;
-
Returns:
true
iflhs.rank()==rhs.rank()
andlhs.extents(r)==rhs.extents(r)
for allr
in the range[0, lhs.rank())
, orfalse
otherwise.
template<ptrdiff_t... LHS, ptrdiff_t... RHS> constexpr bool operator!=(const extents<LHS...>& lhs, const extents<RHS...>& rhs) noexcept;
-
Returns:
!(lhs==rhs)
26.7.� Layout mapping policy [mdspan.layout]
26.7.�.1 Layout mapping requirements [mdspan.layout.reqs]
-
A layout mapping policy is a class that contains a layout mapping, a nested class template.
-
A layout mapping policy shall meet the requirements in table �.
-
A layout mapping shall meet the requirements of
DefaultConstructible
,CopyAssignable
,EqualityComparable
, and the requirements in table �. -
In Table �:
-
MP
denotes a layout mapping policy. -
E
denotes a specialization ofextents
. -
e
denotes an object of typeE
defining a domain multi-index space. -
r
is a value of an integral type such that 0 <=r
<e.rank()
. -
i...
andj...
are packs of an integer type denoting values in the multi-index spacee
, ther
*th member of packsi...
andj...
are denoted byi[r]
andj[r]
, andsizeof...(i)==E::rank()
, 0 <=i[r]
<e.extent(r)
,sizeof...(j)==E::rank()
, and 0 <=j[r]
<e.extent(r)
. -
M
denotes a layout mapping class. -
m
denotes an object of typeM
that maps a multi-indexi...
to an integral value.
-
Table � — Layout mapping policy and layout mapping requirements
Expression | Return Type | Operational Semantics | Requires/Remarks |
---|---|---|---|
MP::template mapping<E>
| M
| ||
m.get_extents()
| E
|
Returns: | |
m(i...)
| E::index_type
| Returns: Mapping of a multi-index i...
| Requires: 0 <= m(i...)
|
m.required_span_size()
| E::index_type
| Returns: one plus the maximum value of m(i...) .
| |
m.is_unique()
| bool
| Returns: true if m(i...)!=m(j...) for every i...!=j...
| |
m.is_contiguous()
| bool
| Returns: true if the set of values defined by m(i)... is equal to the set of values consisting of 0 ...m.required_span_size()-1
| |
m.is_strided()
| bool
| Returns: true if m(j...) - m(i...) = s[r] when all members of j... and i... are equal except for exactly one r th member such that j[r]==i[r]+1 . s[r] is the stride of ordinate r .
| |
M::is_always_unique()
| bool
| Returns: true if m.is_unique()==true for any object of type M .
| |
M::is_always_contiguous()
| bool
| Returns: true if m.is_contiguous()==true for any object of type M .
| |
M::is_always_strided()
| bool
| Returns: true if m.is_strided()==true for any object of type M .
| |
m.stride(r)
| E::index_type
| Returns: m(j...) - m(i...) when all members of j... and i... are equal except for the r th member such that j[r]==i[r]+1 .
| Requires: m.is_strided()==true
|
26.7.�.2 Class layout_left [mdspan.layout.left]
-
layout_left
meets the requirements of layout mapping policy. [Note: Thus, any well-formed specialization oflayout_left::template mapping
meets the requirements of layout mapping —end note] -
layout_left
gives a layout mapping where the left-most extent is stride one and strides increase left-to-right as the product of extents. -
If
Extents
is not a (possibly cv-qualified) specialization ofextents
, the program is ill-formed.
namespace std { namespace experimental { namespace fundamentals_v3 { struct layout_left { template<class Extents> class mapping { public: // [mdspan.layout.left.cons], layout_left::mapping constructors constexpr mapping() noexcept; constexpr mapping(const mapping& other) noexcept; constexpr mapping(mapping&& other) noexcept; constexpr mapping(const Extents& e) noexcept; template<class OtherExtents> constexpr mapping(const mapping<OtherExtents>& other); mapping& operator=() noexcept = default; mapping& operator=(const mapping& other) noexcept = default; template<class OtherExtents> constexpr mapping& operator=(const mapping<OtherExtents>& other); // [mdspan.layout.left.ops], layout_left::mapping operations Extents get_extents() const noexcept; constexpr typename Extents::index_type required_span_size() const noexcept; template<class... Indices> typename Extents::index_type operator()(Indices... is) const; static constexpr bool is_always_unique(); static constexpr bool is_always_contiguous(); static constexpr bool is_always_strided(); constexpr bool is_unique() const; constexpr bool is_contiguous() const; constexpr bool is_strided() const; template<class OtherExtents> constexpr bool operator==(const mapping<OtherExtents>& other) const noexcept; template<class OtherExtents> constexpr bool operator!=(const mapping<OtherExtents>& other) const noexcept; typename Extents::index_type stride(size_t rank) const noexcept; private: Extents extents_; // exposition only }; }; }}}
26.7.�.2.1 layout_left::mapping
constructors [mdspan.layout.left.cons]
constexpr mapping() noexcept;
-
Effects: Default-initializes
extents_
. -
Postconditions:
get_extents()==Extents()
constexpr mapping(const mapping& other) noexcept;
-
Effects: Initializes
extents_
withother.extents_
. -
Postconditions:
get_extents()==other.get_extents()
.
constexpr mapping(mapping&& other) noexcept;
-
Effects: Initializes
extents_
withmove(other.extents_)
. -
Postconditions:
get_extents()
returns a copy of anExtents
that is equal to the copy returned byother.get_extents()
before the invocation of the move.
constexpr mapping(const Extents & e) noexcept;
-
Effects: Initializes
extents_
withe
. -
Postconditions:
get_extents()==e
.
template<class OtherExtents> constexpr mapping(const mapping<OtherExtents>& other);
-
Requires:
other.get_extents()
meets the requirements for use in the initialization ofextents_
. -
Effects: Initializes
extents_
withother.get_extents()
. -
Postconditions:
get_extents()==other.extents_
. -
Throws: nothing.
26.7.�.2.2 layout_left::mapping
operations [mdspan.layout.left.ops]
Extents get_extents() const noexcept;
-
Returns:
extents_
.
typename Extents::index_type required_span_size() const noexcept;
-
Returns: The product of
get_extents().extent(r)
for allr
where 0 <=r
<get_extents().rank()
template<class... Indices> typename Extents::index_type operator()(Indices... i) const;
Let i[k]
denote the k
th member of i...
.
-
Returns: Equivalent to
offset
in
Extents::index_type offset = 0 ; for(size_t k=0; k<get_extents.rank(); ++k) offset += i[k]*stride(k);
-
Remarks: This operator shall not participate in overload resolution unless
-
sizeof...(Indices)==get_extents().rank()
, -
and
is_convertible_v<Indices, typename Extents::index_type> && ...
-
static constexpr bool is_always_unique(); static constexpr bool is_always_contiguous(); static constexpr bool is_always_strided(); constexpr bool is_unique() const; constexpr bool is_contiguous() const; constexpr bool is_strided() const;
-
Returns:
true
typename Extents::index_type stride(size_t r) const
-
Returns: Equivalent to
s
in
Extents::index_type s = 1; for(size_t k=0; k<r; ++k) s *= get_extents().extent(k);
template<class OtherExtents> constexpr bool operator==(const mapping<OtherExtents>& other) const noexcept;
-
Returns:
get_extents()==other.get_extents()
.
template<class OtherExtents> constexpr bool operator!=(const mapping<OtherExtents>& other) const noexcept;
-
Returns:
get_extents()!=other.get_extents()
.
26.7.�.3 Class layout_right [mdspan.layout.right]
-
layout_right
meets the requirements of layout mapping policy. [Note: Thus, any well-formed specialization oflayout_right::template mapping
meets the requirements of layout mapping —end note] -
The layout mapping property
layout_right
gives a layout mapping where the right-most extent is stride one and strides increase right-to-left as the product of extents. -
If
Extents
is not a (possibly cv-qualified) specialization ofextents
, the program is ill-formed.
namespace std { namespace experimental { namespace fundamentals_v3 { struct layout_right { template<class Extents> class mapping { public: // [mdspan.layout.right.cons], layout_left::mapping constructors constexpr mapping() noexcept; constexpr mapping(const mapping& other) noexcept; constexpr mapping(mapping&& other) noexcept; constexpr mapping(Extents e) noexcept; template<class OtherExtents> constexpr mapping(const mapping<OtherExtents>& other); mapping& operator=() noexcept = default; mapping& operator=(const mapping& other) noexcept = default; template<class OtherExtents> constexpr mapping& operator=(const mapping<OtherExtents>& other); // [mdspan.layout.right.ops], layout_right::mapping operations Extents get_extents() const noexcept; constexpr typename Extents::index_type required_span_size() const noexcept; template<class... Indices> typename Extents::index_type operator()(Indices... is) const; static constexpr bool is_always_unique() noexcept; static constexpr bool is_always_contiguous() noexcept; static constexpr bool is_always_strided() noexcept; constexpr bool is_unique() const noexcept; constexpr bool is_contiguous() const noexcept; constexpr bool is_strided() const noexcept; typename Extents::index_type stride(size_t rank) const noexcept; template<class OtherExtents> constexpr bool operator==(const mapping<OtherExtents>& other) const noexcept; template<class OtherExtents> constexpr bool operator!=(const mapping<OtherExtents>& other) const noexcept; private: Extents extents_; // exposition only }; }; }
26.7.�.3.1 layout_right::mapping
constructors [mdspan.layout.right.cons]
constexpr mapping() noexcept;
-
Effects: Default-initializes
extents_
. -
Postconditions:
get_extents()==Extents()
constexpr mapping(const mapping& other) noexcept;
-
Effects: Initializes
extents_
withother.extents_
. -
Postconditions:
get_extents()==other.get_extents()
.
constexpr mapping(mapping&& other) noexcept;
-
Effects: Initializes
extents_
withmove(other.extents_)
. -
Postconditions:
get_extents()
returns a copy of anExtents
that is equal to the copy returned byother.get_extents()
before the invocation of the move.
constexpr mapping(Extents e) noexcept;
-
Effects: Initializes
extents_
withe
. -
Postconditions:
get_extents()==e
.
template<class OtherExtents> constexpr mapping(const mapping<OtherExtents>& other);
-
Requires:
other.get_extents()
meets the requirements for use in the initialization ofextents_
. -
Effects: Initializes
extents_
withother.get_extents()
. -
Postconditions:
get_extents()==other.extents_
. -
Throws: nothing.
26.7.�.3.2 layout_right::mapping
operations [mdspan.layout.right.ops]
Extents get_extents() const noexcept;
-
Returns:
extents_
.
typename Extents::index_type required_span_size() const noexcept;
-
Returns: The product of
get_extents().extent(r)
for allr
where 0 <=r
<get_extents().rank()
template<class... Indices> typename Extents::index_type operator()(Indices... i) const noexcept;
Let i[k]
denote the k
th member of i...
.
-
Returns: Equivalent to
offset
in
index_type offset = 0; for(size_t k=0; k<Extents::rank(); ++k) offset += i[k]*stride(k);
-
Remarks: This operator shall not participate in overload resolution unless
-
sizeof...(Indices)==get_extents().rank()
, -
and
is_convertible_v<Indices, typename Extents::index_type> && ...
-
static constexpr bool is_always_unique() noexcept; static constexpr bool is_always_contiguous() noexcept; static constexpr bool is_always_strided() noexcept; constexpr bool is_unique() const noexcept; constexpr bool is_contiguous() const noexcept; constexpr bool is_strided() const noexcept;
-
Returns:
true
typename Extents::index_type stride(size_t r) const noexcept;
-
Returns: Equivalent to
s
in
Extents::index_type s = 1; for(size_t k=r+1; k<get_extents.rank(); ++k) s *= get_extents(k);
template<class OtherExtents> constexpr bool operator==(const mapping<OtherExtents>& other) const noexcept;
-
Returns:
get_extents()==other.get_extents()
.
template<class OtherExtents> constexpr bool operator!=(const mapping<OtherExtents>& other) const noexcept;
-
Returns:
get_extents()!=other.get_extents()
.
26.7.�.4 Class layout_stride
[mdspan.layout.stride]
-
layout_stride
meets the requirements of layout mapping policy. -
The layout mapping property
layout_stride
gives a layout mapping where the strides are user defined. -
If
Extents
is not a (possibly cv-qualified) specialization ofextents
, the program is ill-formed.
namespace std { namespace experimental { namespace fundamentals_v3 { struct layout_stride { template<class Extents> class mapping { public: // [mdspan.layout.stride.cons], layout_stride::mapping constructors constexpr mapping() noexcept; constexpr mapping(mapping const& other) noexcept; constexpr mapping(mapping&& other) noexcept; constexpr mapping(Extents e, array<typename Extents::index_type, Extents::rank()> s) noexcept; template<class OtherExtents> constexpr mapping(const mapping<OtherExtents>& other); mapping& operator=() noexcept = default; mapping& operator=(const mapping& other) noexcept = default; template<class OtherExtents> constexpr mapping& operator=(const mapping<OtherExtents>& other); // [mdspan.layout.stride.ops], layout_stride::mapping operations Extents get_extents() const noexcept; array<typename Extents::index_type, Extents::rank()> get_strides() const noexcept; constexpr typename Extents::index_type required_span_size() const noexcept; template<class... Indices> typename Extents::index_type operator()(Indices... is) const; static constexpr bool is_always_unique() noexcept; static constexpr bool is_always_contiguous() noexcept; static constexpr bool is_always_strided() noexcept; constexpr bool is_unique() const noexcept; constexpr bool is_contiguous() const noexcept; constexpr bool is_strided() const noexcept; typename Extents::index_type stride(size_t rank) const noexcept; template<class OtherExtents> constexpr bool operator==(const mapping<OtherExtents>& other) const noexcept; template<class OtherExtents> constexpr bool operator!=(const mapping<OtherExtents>& other) const noexcept; private: Extents extents_; // exposition only array<typename Extents::index_type, Extents::rank()> strides_; // exposition only }; }; }}}
26.7.�.4.1 layout_stride::mapping constructors [mdspan.layout.stride.cons]
constexpr mapping() noexcept;
-
Effects: Default-initializes extents_.
-
Postconditions:
get_extents()==Extents()
andget_strides()==array<typename Extents::index_type, Extents::rank()>()
constexpr mapping(const mapping& other) noexcept;
-
Effects: Initializes extents_ with other.extents_.
-
Postconditions:
get_extents()==other.get_extents()
andget_strides()==other.get_strides()
constexpr mapping(mapping&& other) noexcept;
-
Effects: Initializes extents_ with
move(other.extents_)
. -
Postconditions:
get_extents()
returns a copy of an Extents that is equal to the copy returned byother.get_extents()
before the invocation of the move andget_strides()
returns a copy of anarray<typename Extents::index_type,Extents::rank()>
that is equal to the copy returned byother.get_strides()
before the invocation of the move
constexpr mapping(Extents e, array<typename Extents::index_type, Extents::rank()> s) noexcept;
-
Requires:
-
s[i]>0
for 0 <i
<=Extents::rank()
-
there is a permutation of the numbers
0,
...,Extents::rank()-1
o(i)
with 0 <=i
<Extents::rank()
such thatstride(o(i))>=stride(o(i-1))*get_extent.extent(o(i-1))
for 1 <=i
<Extents::rank()
-
Effects: Initializes
extents_
withe
andstrides_
withs
-
Postconditions:
get_extents()==e
andget_strides()==s
. -
Throws: nothing
template<class OtherExtents> constexpr mapping(const mapping<OtherExtents>& other);
-
Requires: other.get_extents() meets the requirements for use in the initialization of extents_.
-
Effects: Initializes
extents_
withother.get_extents()
and initializesstrides_
withother.get_strides()
. -
Postconditions:
get_extents()==other.get_extents()
andget_strides()==other.get_strides()
. -
Throws: nothing.
26.7.�.4.2 layout_stride::mapping operations [mdspan.layout.stride.ops]
Extents get_extents() const noexcept;
-
Returns: extents_.
array<typename Extents::index_type, Extents::rank()> get_strides() const noexcept;
-
Returns: strides_.
typename Extents::index_type required_span_size() const noexcept;
-
Returns: The maximum of
get_extents().extent(r)*stride(r)
for allr
where 0 <=r
<get_extents().rank()
template <class... Indices> typename Extents::index_type operator()(Indices... i) const noexcept;
-
Returns: If
i...
isi0, i1, i2,
..., ik
(wherek==Extents::rank() - 1
) ands = get_strides()
, returnsi0*s[1]+i1*s[2]+
...+ik*s[k]
-
Remarks: This operator shall not participate in overload resolution unless
-
sizeof...(Indices)==Extents::rank()
, -
and
is_convertible_v<Indices, typename Extents::index_type> && ...
static constexpr bool is_always_unique() noexcept; static constexpr bool is_always_strided() noexcept; constexpr bool is_unique() const noexcept; constexpr bool is_strided() const noexcept;
-
Returns: true
static constexpr bool is_always_contiguous() noexcept;
-
Returns: false
constexpr bool is_contiguous() const noexcept;
-
Returns: true if there is a permutation of the numbers
0,
...,Extents::rank()-1
o(i)
with 0 <=i
<Extents::rank()
such thatmin(stride(o(i))==1
andstride(o(i))==stride(o(i-1))*get_extent.extent(o(i-1))
with 1 <=i
<Extents::rank()
otherwise returns false
typename Extents::index_type stride(size_t r) const noexcept;
-
Returns:
strides_(r)
template<class OtherExtents> constexpr bool operator==(const mapping<OtherExtents>& other) const noexcept;
-
Returns:
get_extents()==other.get_extents()
.
template<class OtherExtents> constexpr bool operator!=(const mapping<OtherExtents>& other) const noexcept;
-
Returns:
get_extents()!=other.get_extents()
.
26.7.� Accessor [mdspan.accessor]
26.7.�.1 Accessor requirements [mdspan.accessor.reqs]
-
An accessor is a class that converts a pointer and an offset into a reference. [Note: The intended semantic is that the reference refers to a value at the given offset from the given pointer. —end note]
-
An accessor shall meet the requirements of
DefaultConstructible
,CopyAssignable
, and the requirements in table �.
In Table �:
-
A
denotes an accessor. -
a
denotes a value of typeA
. -
p
denotes a value of typeA::pointer
. -
i
denotes an integer.
Table �: Accessor requirements
Expression | Return Type | Requirements/Notes |
---|---|---|
A::value_type
| ||
A::pointer
| Requires: A::pointer shall meet the requirements of random access iterator ([random.access.iterators]), and iterator_traits<A::pointer>::value_type shall be exactly A::value_type .
| |
A::reference
| Requires: iterator_traits<A::pointer>::reference shall be convertible to A::reference
| |
a(p, i)
| A::reference
| [Note: basic_mdspan implementations behave as if they use this expression in place of p[i] . - end note]
|
26.7.�.2 Class accessor_basic
[mdspan.accessor.basic]
-
accessor_basic
meets the requirements of accessor. -
accessor_basic
gives an accessor that has semantics equivalent to dereferencing a pointer to an array of values. -
If
T
is not an object type or is an array type, the program is ill-formed.
namespace std { namespace experimental { namespace fundamentals_v3 { template<class T> struct accessor_basic { using value_type = T; using pointer = T*; using reference = T&; // [mdspan.accessor.basic.ops], <code data-opaque bs-autolink-syntax='`accessor_basic`'>accessor_basic</code> operations constexpr reference operator()(pointer p, ptrdiff_t i) const noexcept; }; }}}
26.7.�.2.1 accessor_basic
operations [mdspan.accessor.basic.ops]
constexpr reference operator()(pointer p, ptrdiff_t i) const noexcept;
-
Returns:
p[i]
26.7.� Class template basic_mdspan
[mdspan.basic]
-
The
basic_mdspan
class template maps a multi-index within a multi-index domain to a reference to an element in the codomainspan
. -
The multi-index domain space is the Cartesian product of the extents:
[0, extent(0)) * [0, extent(1)) *
...* [0, extent(rank() - 1))
. Each extent may be statically or dynamically specified. -
As with
span
, the storage of the objects in the codomainspan
of abasic_mdspan
is owned by some other object. -
ElementType
is required to be a complete object type that is not an abstract class type or an array type. -
Extents
is required to be a (cv-unqualified) specialization ofextents
. -
LayoutPolicy
is required to be a cv-unqualified object type. -
If
LayoutPolicy
does not meet the layout mapping policy requirements, the program is ill-formed. -
Accessor
is required to be a cv-unqualified object type. -
If
Accessor
does not meet the accessor requirements, or ifAccessor::value_type
is not exactlyElementType
, the program is ill-formed.
namespace std { namespace experimental { namespace fundamentals_v3 { template<class ElementType, class Extents, class LayoutPolicy, class Accessor> class basic_mdspan { public: // Domain and codomain types using layout = LayoutPolicy; using mapping = typename layout::template mapping<Extents>; using accessor = Accessor; using element_type = typename accessor::value_type; using value_type = remove_cv_t<element_type>; using index_type = ptrdiff_t ; using difference_type = ptrdiff_t ; using pointer = typename accessor::pointer; using reference = typename accessor::reference; // [mdspan.basic.cons], basic_mdspan constructors, assignment, and destructor constexpr basic_mdspan() noexcept = default; constexpr basic_mdspan(const basic_mdspan&) noexcept = default; constexpr basic_mdspan(basic_mdspan&&) noexcept; template<class... IndexType> explicit constexpr basic_mdspan(pointer p, IndexType... dynamic_extents); template<class... IndexType> explicit constexpr basic_mdspan(const span<element_type>& sp, IndexType... dynamic_extents); template<class IndexType, size_t N> explicit constexpr basic_mdspan(pointer p, const array<IndexType, N>& dynamic_extents); template<class IndexType, size_t N> explicit constexpr basic_mdspan(const span<element_type>& sp, const array<IndexType, N>& dynamic_extents); constexpr basic_mdspan(pointer p, const mapping& m); constexpr basic_mdspan(const span<element_type>& sp, const mapping& m); constexpr basic_mdspan(pointer p, const mapping& m, const accessor& a); constexpr basic_mdspan(const span<element_type>& sp, const mapping& m, const accessor& a); template<class OtherElementType, class OtherExtents, class OtherLayoutPolicy, class OtherAccessor> constexpr basic_mdspan(const basic_mdspan<OtherElementType, OtherExtents, OtherLayoutPolicy, OtherAccessor>& other); ~basic_mdspan() = default; constexpr basic_mdspan& operator=(const basic_mdspan&) noexcept = default; constexpr basic_mdspan& operator=(basic_mdspan&&) noexcept = default; template<class OtherElementType, class OtherExtents, class OtherLayoutPolicy, class OtherAccessor> constexpr basic_mdspan& operator=(const basic_mdspan<OtherElementType, OtherExtents, OtherLayoutPolicy, OtherAccessor>& other) noexcept; // [mdspan.basic.mapping], basic_mdspan mapping domain multi-index to access codomain element constexpr reference operator[](index_type) const noexcept; template<class... IndexType> constexpr reference operator()(IndexType... indices) const noexcept; template<class IndexType, size_t N> constexpr reference operator()(const array<IndexType, N>& indices) const noexcept; accessor get_accessor() const; // [mdspan.basic.domobs], basic_mdspan observers of the domain multi-index space static constexpr int rank() noexcept; static constexpr int rank_dynamic() noexcept; static constexpr index_type static_extent(size_t) noexcept; constexpr Extents get_extents() const noexcept; constexpr index_type extent(size_t) const noexcept; constexpr index_type size() const noexcept; constexpr index_type unique_size() const noexcept; // [mdspan.basic.codomain], basic_mdspan observers of the codomain constexpr span<element_type> span() const noexcept; // [mdspan.basic.obs], basic_mdspan observers of the mapping static constexpr bool is_always_unique() noexcept; static constexpr bool is_always_contiguous() noexcept; static constexpr bool is_always_strided() noexcept; constexpr mapping get_mapping() const noexcept; constexpr bool is_unique() const noexcept; constexpr bool is_contiguous() const noexcept; constexpr bool is_strided() const noexcept; constexpr index_type stride(size_t) const; private: accessor acc_; // exposition only mapping map_; // exposition only pointer ptr_; // exposition only }; }}}
26.7.�.1 basic_mdspan
constructors, assignment, and destructor [mdspan.basic.cons] // Mapping domain multi-index to access codomain element
constexpr basic_mdspan() noexcept = default;
-
Effects:
-
zero-initializes
ptr_
-
value-initializes
map_
-
value-initializes
acc_
-
-
Postconditions:
-
size()==0
-
get_extents()==Extents()
-
get_mapping()==mapping()
-
constexpr basic_mdspan(const basic_mdspan& other) noexcept = default;
-
Effects:
-
initializes
ptr_
withother.ptr_
-
initializes
map_
withother.map_
-
initializes
acc_
withother.acc_
-
-
Postconditions:
-
size()==other.size()
-
get_extents()==other.get_extents()
-
get_mapping()==other.get_mapping()
-
constexpr basic_mdspan(basic_mdspan&& other) noexcept;
-
Effects:
-
initializes
ptr_
withmove(other.ptr_)
-
initializes
map_
withmove(other.map_)
-
initializes
acc_
withmove(other.acc_)
-
template<class... IndexType> explicit constexpr basic_mdspan(pointer ptr, IndexType... dynamic_extents);
-
Requires:
[ptr, ptr+mapping(Extents(dynamic_extents...)).required_span_size())
shall be a valid range. -
Effects:
-
initializes
ptr_
withptr
-
initializes
map_
withExtents(dynamic_extents...)
-
value-initializes
acc_
-
-
Postconditions:
-
get_extents()==Extents(dynamic_extents...)
-
get_mapping()==mapping(Extents(dynamic_extents...))
-
-
Remarks: This constructor will not participate in overload resolution unless:
-
(is_convertible_v<IndexType, index_type> && ...)
, -
sizeof...(dynamic_extents)==rank_dynamic()
, and -
is_constructible_v<mapping, Extents>
.
-
-
Throws: Nothing.
template<class... IndexType> explicit constexpr basic_mdspan(const span<element_type>& sp, IndexType... dynamic_extents);
-
Requires:
sp.size()==mapping(Extents(dynamic_extents...)).required_span_size()
-
Effects:
-
initializes
ptr_
withsp.data()
-
value-initializes
map_
-
value-initializes
acc_
-
-
Postconditions:
-
get_extents()==Extents(dynamic_extents...)
-
get_mapping()==mapping(Extents(dynamic_extents...))
-
-
Remarks: This constructor will not participate in overload resolution unless:
-
(is_convertible_v<IndexType, index_type> && ...)
, -
sizeof...(dynamic_extents)==rank_dynamic()
, -
is_constructible_v<mapping, Extents>
.
-
-
Throws: Nothing.
template<class IndexType, size_t N> explicit constexpr basic_mdspan(pointer p, const array<IndexType, N>& dynamic_extents);
-
Requires:
[ptr, ptr+mapping(Extents(dynamic_extents)).required_span_size())
shall be a valid range. -
Effects: Equivalent to
basic_mdspan(p, dynamic_extents[Rs]...)
, withRs...
fromindex_sequence<Rs...>
matchingmake_index_sequence<N>
. -
Remarks: This constructor does not participate in overload resolution unless
-
IndexType
is convertible toindex_type
, and -
N==rank_dynamic()
, and -
is_constructible_v<mapping, Extents>
.
-
-
Throws: Nothing.
template<class IndexType, size_t N> explicit constexpr basic_mdspan(const span<element_type>& sp, const array<IndexType, N>& dynamic_extents);
-
Requires:
sp.size()==mapping(Extents(dynamic_extents)).required_span_size()
-
Effects: Equivalent to
basic_mdspan(sp.data(), dynamic_extents[Rs]...)
, withRs...
fromindex_sequence<Rs...>
matchingmake_index_sequence<N>
. -
Remarks: This constructor does not participate in overload resolution unless
-
IndexType
is convertible toindex_type
, -
N==rank_dynamic()
, -
is_constructible_v<mapping, Extents>
.
-
-
Throws: Nothing.
constexpr basic_mdspan(pointer p, const mapping& m);
-
Requires:
[ptr, ptr+m.required_span_size())
shall be a valid range. -
Effects:
-
initializes
ptr_
withp
-
initializes
map_
withm
-
value-initializes
acc_
-
-
Postconditions:
-
get_extents()==m.get_extents()
-
get_mapping()==m
-
-
Throws: Nothing.
constexpr basic_mdspan(const span<element_type>& sp, const mapping& m);
-
Requires:
sp.size()==m.required_span_size()
-
Effects: Equivalent to
basic_mdspan(sp.data(), m)
-
Remarks: This constructor does not participate in overload resolution unless
is_constructible_v<mapping, Extents>
. -
Throws: Nothing.
constexpr basic_mdspan(pointer p, const mapping& m, const accessor& a);
-
Requires:
[ptr, ptr+m.required_span_size())
shall be a valid range. -
Effects:
-
initializes
ptr_
withp
-
initializes
map_
withm
-
initializes
acc_
witha
-
-
Postconditions:
-
get_extents()==m.get_extents()
-
get_mapping()==m
-
-
Throws: Nothing.
constexpr basic_mdspan(const span<element_type>& sp, const mapping& m, const accessor& a);
-
Requires:
sp.size()==m.required_span_size()
-
Effects: Equivalent to
basic_mdspan(sp.data(), m, a)
-
Remarks: This constructor does not participate in overload resolution unless
-
is_constructible_v<mapping, Extents>
.
-
-
Throws: Nothing.
template<class OtherElementType, class OtherExtents, class OtherLayoutPolicy, class OtherAccessor> constexpr basic_mdspan(const basic_mdspan<OtherElementType, OtherExtents, OtherLayoutPolicy, OtherAccessor>& other);
-
Requires:
-
For all
r
in the range[0, rank())
, ifother.static_extent(r)==dynamic_extent
orstatic_extent(r)==dynamic_extent
, thenother.extent(r)==extent(r)
-
-
Effects:
-
initializes
ptr_
withother.ptr_
-
initializes
map_
withother.map_
-
initializes
acc_
withother.acc_
-
-
Postconditions:
-
get_extents()==Extents(other.get_extents())
-
get_mapping()==mapping(other.get_mapping())
-
-
Remarks: This constructor will not participate in overload resolution unless all of the following conditions are met:
-
OtherElementType(*)[]
is convertible toElementType(*)[]
, -
OtherLayoutPolicy::template mapping<OtherExtents>
is convertible tomapping
-
OtherAccessor
is convertible toAccessor
, and -
OtherAccessor::pointer
is convertible topointer
.
-
-
Throws: Nothing.
template<class OtherElementType, class OtherExtents, class OtherLayoutPolicy, class OtherAccessor> constexpr basic_mdspan& operator=(const basic_mdspan<OtherElementType, OtherExtents, OtherLayoutPolicy, OtherAccessor>& other);
-
Requires:
-
For all
r
in the range[0, rank())
, ifother.static_extent(r)==dynamic_extent
orstatic_extent(r)==dynamic_extent
, thenother.extent(r)==extent(r)
-
-
Effects:
-
assigns
other.ptr_
toptr_
. -
assigns
other.map_
tomap_
-
assigns
other.acc_
toacc_
-
-
Postconditions:
-
get_extents()==Extents(other.get_extents())
-
get_mapping()==mapping(other.get_mapping())
-
-
Remarks: This constructor will not participate in overload resolution unless all of the following conditions are met:
-
OtherElementType(*)[]
is assignable toElementType(*)[]
, -
OtherLayoutPolicy::template mapping<OtherExtents>
is assignable tomapping
-
OtherAccessor
is assignable toAccessor
, and -
OtherAccessor::pointer
is assignable topointer
.
-
-
Throws: Nothing.
26.7.�.2 basic_mdspan
mapping domain multi-index to access codomain element [mdspan.basic.mapping]
constexpr reference operator[](index_type i) const;
-
Effects: Equivalent to
return (*this)(i);
. -
Remarks: This operator does not participate in overload resolution unless
rank()==1
template<class... IndexType> constexpr reference operator()(IndexType... indices) const;
-
Requires: 0 <=
array<index_type, sizeof...(indices)>{indices...}[r]
<extent(r)
for allr
in the range[0, rank())
. -
Effects: Equivalent to
return acc_(ptr_, indices...);
-
Remarks: This operator does not participate in overload resolution unless
-
is_convertible_v<IndexType, index_type> && ...
-
sizeof...(IndexType)==rank()
-
-
Throws: nothing.
template<class IndexType, size_t N> constexpr reference operator()(const array<IndexType, N>& indices) const;
-
Effects: Equivalent to
return std::apply(*this, indices);
-
Remarks: This operator does not participate in overload resolution unless
-
is_convertible_v<IndexType, index_type>
-
rank()==N
-
-
Throws: nothing.
accessor get_accessor() const;
-
Returns:
acc_
.
26.7.�.3 basic_mdspan
observers of the domain multi-index space [mdspan.basic.domobs]
static constexpr int rank() noexcept;
-
Returns:
Extents::rank()
.
static constexpr int rank_dynamic() noexcept;
-
Returns:
Extents::rank_dynamic()
.
static constexpr index_type static_extent(size_t r) noexcept;
-
Returns:
Extents::static_extent(r)
.
constexpr Extents get_extents() const noexcept;
-
Returns:
get_mapping().get_extents()
.
constexpr index_type extent(size_t r) const noexcept;
-
Returns:
get_extents().extent(r)
.
constexpr index_type size() const noexcept;
-
Returns: Product of
extent(r)
for allr
where 0 <=r
<get_extents().rank()
.
constexpr index_type unique_size() const noexcept;
-
Returns: The number of unique elements in the codomain. [Note: If
get_mapping().is_unique()
istrue
, this is identical tosize()
—end note]
26.7.�.3 basic_mdspan
observers of the codomain [mdspan.basic.codomain]
constexpr span<element_type> span() const noexcept;
-
Returns: The codomain
span
.
26.7.�.4 basic_mdspan
observers of the mapping [mdspan.basic.obs]
static constexpr bool is_always_unique() noexcept;
-
Returns:
mapping::is_always_unique()
static constexpr bool is_always_contiguous() noexcept;
-
Returns:
mapping::is_always_contiguous()
static constexpr bool is_always_strided() noexcept;
-
Returns:
mapping::is_always_strided()
constexpr mapping get_mapping() const noexcept;
-
Returns:
map_
constexpr bool is_unique() const noexcept;
-
Returns:
get_mapping().is_unique()
constexpr bool is_contiguous() const noexcept;
-
Returns:
get_mapping().is_contiguous()
constexpr bool is_strided() const noexcept;
-
Returns:
get_mapping().is_strided()
constexpr index_type stride(size_t r) const;
-
Returns:
get_mapping().stride(r)
26.7.� subspan [mdspan.subspan]
namespace std { namespace experimental { namespace fundamentals_v3 { // [mdspan.subspan], subspan creation template<class ElementType, class Extents, class LayoutPolicy, class Accessor, class... SliceSpecifiers> basic_mdspan<ElementType, E /* see-below */, layout_stride, Accessor> subspan(const basic_mdspan<ElementType, Extents, LayoutPolicy, Accessor>& src, SliceSpecifiers ... slices) noexcept; }}}
subspan
creates a basic_mdspan
that is a view on a (potentially trivial) subset of another basic_mdspan
.
The SliceSpecifier parameters indicate the subset that the return value references.
Let slices[r] denote the rth value in the parameter pack slices.
The second template parameter of the return type is E, a specialization of extents
.
Let C be the number of parameters in SliceSpecifiers
which are convertible to ptrdiff_t
Let ranges[r] denote the rth value in the parameter pack slices, which is not convertible to ptrdiff_t
Let sub be the return value of subspan
Let first[r] denote the rth lower bound of slices[r]
.
-
If
slices[r]
is convertible toptrdiff_t
first[r]==slices[r]
-
If
slices[r]
is convertible topair<ptrdiff_t,ptrdiff_t>
first[r]==pair<ptrdiff_t,ptrdiff_t>(slices[r]).first()
-
If
slices[r]
is convertible toalltype_t
first[r]==0
last[r]
denote the rth upper bound of slices[r]
. -
If
slices[r]
is convertible toptrdiff_t
last[r]==slices[r]+1
-
If
slices[r]
is convertible topair<ptrdiff_t,ptrdiff_t>
last[r]==pair<ptrdiff_t,ptrdiff_t>(slices[r]).second()
-
If
slices[r]
is convertible toalltype_t
last[r]==src.extent(r)
Requires:
-
sizeof(slices...)==Extents::rank()
-
slices[r]
is convertible toptrdiff_t
,pair<ptrdiff_t,ptrdiff_t>
oralltype_t
-
0 <=
first[r]
<src.extent(r)
-
0 <
last[r]
<=src.extent(r)
-
LayoutPolicy
islayout_right
,layout_left
, orlayout_stride
Postcondition:
-
E::rank()==Extents::rank()-C
-
If ranges[r] is the nth value of
ranges
convertible toalltype_t
orpair<ptrdiff_t,ptrdiff_t>
andslices[k]
is then
th value ofslices
convertible toall type_t
orpair<ptrdiff_t,ptrdiff_t>
thensub.extent(r)==last[k]-first[k]
andsub.stride(r)==src.stride(k)
-
sub.ptr_==src.ptr_+first[0]*src.stride(0)+
...+first[Extents::rank()-1]*src.stride(Extents::rank()-1)
-
Note: it is quality of implementation whether static extents are preserved if possible.
-
Examples:
// Create a mapping typedef extents<3,dynamic_extent,7> Extents3D; layout_right::template mapping<Extents3D> map_right(10); // Allocate a basic_mdspan int* ptr = new int[3*8*10]; basic_mdspan<int,Extents3D,layout_right> a(ptr,map_right); // Initialize the span for(int i0=0; i0<a.extent(0); i0++) for(int i1=0; i1<a.extent(1); i1++) for(int i2=0; i2<a.extent(2); i2++) a(i0,i1,i2) = 10000*i0+100*i1+i2; // Create Subspan auto a_sub = subspan(a,1,std::pair<int,int>(4,6),std::pair<int,int>(1,6)); // Print values of subspan for(int i0=0; i0<a_sub.extent(0); i0++) { for(int i1=0; i1<a_sub.extent(1); i1++) std::cout << a_sub(i0,i1) << " "; std::cout << std::endl; } /* Output 10401 10402 10403 10404 10405 10501 10502 10503 10504 10505 */
5. Next Steps
-
Wording editing as per guidance from LWG.
6. Related Work
Previous paper:
P0860 : Access Policy Generating Proxy Reference
The reference
type may be a proxy for accessing an element_type
object. For example, the atomic AccessorPolicy
in P0860 defines AccessorPolicy::template accessor<T>::reference
to be atomic_ref<T>
from P0019.
Related papers:
-
P0122 : span: bounds-safe views for sequences of objects The
mdspan
codomain concept of span is well-aligned with this paper. -
P0367 : Accessors The P0367 Accessors proposal includes polymorphic mechanisms for accessing the memory an object or span of objects. The
AccessPolicy
extension point in this proposal is intended to include such memory access properties. -
P0331 : Motivation and Examples for Multidimensional Array
-
P0332 : Relaxed Incomplete Multidimensional Array Type Declaration
-
P0454 : Wording for a Minimal
mdspan
Included proposed modification ofspan
to better alignspan
withmdspan
. -
P0546 : Preparing
span
for the future Proposed modification ofspan
-
P0856 : Restrict access property for
mdspan
andspan
-
P0860 : atomic access policy for
mdspan
-
P0900 : An Ontology of Properties for
mdspan
7. TODO
-
Design questions:
-
Need a way to construct span with non-default-initializedAdded, please reviewmapping
andaccessor
-
Should we be constraining things with
is_integral_v<IndexType>
oris_convertible_v<IndexType, index_type>
? -
Extents and/or mapping conversion?Done, please review -
Constrain constructors ofDone, please reviewbasic_mdspan
based onMapping
andAccessor
constraints. -
doneunique_size()
-