-
```
/disk-samsung/freebsd-ports/math/xtensor-blas/work/xtensor-blas-0.20.0/test/test_lapack.cpp:166:40: warning: implicit conversion changes signedness: 'int' to 'xt::xaccessible::size_type' (aka 'un…
-
## Behaviour
When I try to print the real(or imag) part of a complex xarray to cout, it crashes and prints nothing:
```c++
#include
#include
using namespace std;
#include "xtensor/xarray.hpp…
-
Consider the following code
```cpp
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
int main(int argc, const char** argv)
{
xt::r…
-
xsimd 12 was recently released. It provides significant improvements in stability on less common architectures such as armhf, and has stabilised handling of batch bools (essentially by not doing it),…
-
The following example compiles and runs successfully with gcc (7.3.0 and 8.2.0) and Intel (2018 and 2019) but if I try to turn off all optimizations with ``-O0`` and run the program with ``gdb``, ``gd…
-
The following example:
```cpp
#include
#include
#include
int main()
{
xt::xtensor a = {1, 2, 1, 0, 3, 1};
xt::xtensor idx = {0, 3};
xt::xtensor jdx = {1, 2};
auto b = …
-
Hello, first of all thanks for this awesome project! 🙂
I'm opening this bug report as I didn't find an already open one about this issue; sorry in advance if it's a duplicate.
I'm on MacOS 10.1…
-
Can someone tell me what I am doing wrong?
I am trying to run this code in a jupyter notebook:
```
#include
#include "xtensor/xarray.hpp"
#include "xtensor/xio.hpp"
#include "xtensor/xvie…
-
I want to do matrix multiplication for two tensors with shape (1, 2, 2). Using a (2, 2) shape works, but using an array with an empty dimension (shape (1, 2, 2)) gives `Process finished with exit code…
-
I'm trying to wrap a custom type using pybind11 and xtensor-python. Although I can create a numpy array of my wrapped type from Python, I cannot pass this numpy array to C++ functions or pass xt::xarr…