You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mdspan is an upcoming feature in C++23 with two main changes:
operator[] for multi-dimensional arrays
Indexing and types for multi-dimensional arrays
While 1 requires a new C++ compiler, 2 has been included the CCCL recently. For this feature we can add partial support for the second part by taking in mdspan types into make_tensor calls to translate to what we have.
The text was updated successfully, but these errors were encountered:
mdspan
is an upcoming feature in C++23 with two main changes:operator[]
for multi-dimensional arraysWhile 1 requires a new C++ compiler, 2 has been included the CCCL recently. For this feature we can add partial support for the second part by taking in
mdspan
types intomake_tensor
calls to translate to what we have.The text was updated successfully, but these errors were encountered: