kokkos / mdspan

Reference implementation of mdspan targeting C++23
Other
398 stars 65 forks source link

Implement P2389R1 (add dims template alias) #324

Closed mhoemmen closed 3 months ago

mhoemmen commented 4 months ago

Implement P2389R1, which will be submitted by 2024/04/12. The proposal adds a dims template alias that looks like this.

template<size_t Rank, class IndexType = size_t>
using dims = dextents<IndexType, Rank>;