-
```c++
struct layout_stride {
template
class mapping {
public:
constexpr mapping() noexcept;
constexpr mapping(mapping const& other) noexcept;
constexpr mapping(mapping&& oth…
-
Accessor abstraction discussion as manifested in PR #55
Current PR #55 re-conceives the accessor abstraction a something similar to an array of unknown bound when it is used as a function paramete…
-
The paper currently has the following note next to subspan:
> Note: it is quality of implementation whether static extents are preserved if possible.
I doubt this will fly since the type of the…
-
In this bug report, I refer to the Kokkos that is in Trilinos.
I suspect that in Kokkos_ViewMapping.hpp, some implementations of stride() have array out-of-bounds accesses.
[https://github.com/t…
-
[P0454r0](https://github.com/kokkos/array_ref/blob/master/proposals/P0454r0.bs) titled "Proposed wording, based on span P0122R] for an mdspan with a core subset of the full mdspan functionality" empha…
-
This comes in question category -
How to put the parameters("") in GSL for this dynamic array -
`
int (*arr)[3][3] = new int[2][3][3];
for (int i = 0; i < 2; ++i)
{
for (int j = 0; j < 3; …
-
Hello,
This is a review of the current HEAD (6abdf1d8d) of the ```P0009``` proposal text.
### General
1. The following can be said for the ```gsl::span``` as well but I think some justification …
-
What is the purpose of / usecase for `span::operator()`? As it seems to have the same functionality as `operator[]` I wonder if it wouldn't be better to remove it.
The paper [span: bounds-safe view…