Nicolas Morales

Results 78 comments of Nicolas Morales

> I mean we could go radical and say the defaults are not std something at all. And we can add a cmake option to change the set of namespaces...

In `span`, I believe it's always just `std::size_t`, but `mdspan` has the size type as a template parameter for the extent and can be signed.

> I don't quite get the build failure on MSVC, would need some help there... What if you used the requires clause from `operator()`? I think that operator[] is not...

@stephanlachnit My apologies, we recently fixed a bunch of naming changes. Would you mind rebasing? If you don't have the time I can take this over just let me know....

Closing as it is superseded by https://github.com/kokkos/mdspan/pull/400

Oh I guess we don't. I was thinking about it breaking people's build scripts but we are header only so it won't matter.

> * change: compile time unmanaged views do not have a label > * change: use_count for unmanaged does always return 0 (this could be changed in legacy view to...

> It seems like overload resolution for `typename Mapping` fails for some reason in > > ``` > template > constexpr bool is_mapping_of = > std::is_same::value; > ``` > >...

I suspect the bug is coming from compiler substitution as it is trying to find an appropriate constructor for `layout_stride`. I'm not 100% sure how it is reaching that, I'm...

Ok so just updating with my findings -- gonna try and find a workaround. But basically, for some reason gcc 12 is considering this BasicView constructor: ```cpp template explicit inline...