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
dextents is not available in the std::experimental namespace (by default), even though mdspan and other mdspan components are. Instead, dextents can only be found in the std namespace by default.
One of my colleagues verified today that the problem exists in the headers, not just in the generated godbolt single header. The following code in the example
Hmm... stdex::mdspan shouldn't compile, we might have a stray using declaration somewhere. All of the stuff merged into the standard should be under std:: or, better yet, Kokkos:: (include <mdspan/mdspan.hpp> for that namespace).
dextents
is not available in thestd::experimental
namespace (by default), even thoughmdspan
and other mdspan components are. Instead,dextents
can only be found in thestd
namespace by default.Here is an example.
One of my colleagues verified today that the problem exists in the headers, not just in the generated godbolt single header. The following code in the example
suggests what I think is the problem, namely that
extents.hpp
doesn't appear to importextents
into thestd
namespace.The text was updated successfully, but these errors were encountered: