-
There is currently no way for a caller that invokes the `bulk()` algorithm to indicate to that algorithm that a given strategy for invoking `f` is either allowed or not allowed to invoke `f` concurren…
-
`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 de…
-
Classes like `stdex::thread` need to have some kind of functors. Implementation of `stdex::function` is totally doable with C++98 and some template class overloads so this should be included in stdex …
-
A colleague asked if we could add `operator std::array` to `mdspan`. It would have to be constrained on `rank() == 1` and `static_extent(0) != dynamic_extent`. The `mdspan_to_array` function that fo…
-
The `extents` class could provide support for structured bindings to improve its usability. This way, we could transform your example from:
```c++
stdex::mdspan m{d.data(), stdex::extents{3, 3}};
…
-
Hi, I'm working on [vikunja](https://github.com/alpaka-group/vikunja), a platform-independent primitives library (e.g. `vikunja::transform`, `vikunja::reduce`) for different accelerators based on [alp…
-
Some parts of std-11 library need to be implemented using move-semantic. This feature should be added as extension with macro like `STDEX_RV_REF` etc.
-
Per http://eel.is/c++draft/mdspan.layout.left.obs#5, should have
> `constexpr index_type stride(rank_type i) const;`
Constraints: `extents_type::rank() > 0` is `true`
But is not implemented, f…
-
For example save .jpg file:
```
from ghost import Ghost
from PyQt4.QtCore import QTemporaryFile, QFile, QFileInfo, QIODevice, QByteArray, QDataStream
ghost = Ghost()
with ghost.start() as session:
…
stdex updated
9 years ago
-
Error message:
Clang 15/16 work on Linux. I don't have access there for 17 unfortunately.
After switching to MSVC 2022 on GitHub Actions, it fails as well. Looks like the error is coming from a …