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
* `throw` is not supported in device code, uses `assert` instead
* Converts `stride` of the other `mapping` into `size_t` before comparing the values, to avoid possible warning (error when `-Werror=sign-compare` is on)
* Fixes `operator!=` which is missing when C++20 isn't available (kokkos/mdspan#197)
youyu3
added a commit
to youyu3/mdspan
that referenced
this issue
Jan 6, 2023
The check for
MDSPAN_HAS_CXX_20
is incorrect. Should be#if !(MDSPAN_HAS_CXX_20)
.The text was updated successfully, but these errors were encountered: