-
How should user consume xtensor-blas? I discovered that there is an `xtensor_blas_INCLUDE_DIRS` that I can use to populate targets in my library via `target_include_dirs` but I would prefer to simply …
-
The following does not read or write the data correctly when complete chunks are read in, as in #10:
https://github.com/gdkrmr/zarr-R/blob/31c4176bcba8b841080d56abed231d2c8f773cd3/src/xtensor-read.…
-
Hi,
I believe my issue is similar to https://github.com/xtensor-stack/xtensor/issues/600, but that issue is 7 years old and the solution no longer applies.
I have a thin abstraction layer in my …
-
Hi,
The new added `xt::quantile` seems not to play nicely with `pytensor`.
For me, the following :
```cpp
xt::pytensor arr
{{ 5.3, 4.3, 5.3 },
{ 4.2, 4.2, 5.2 },
…
-
Hi `xtensor` team, really impressed with your product. I'm working on some examples using R, but I'm having a bit of trouble with the broadcasting piece. I think there might be a bug in the `xtensor-r…
-
Take a look at this example:
```cpp
std::array shape{3, 4, 5};
auto shape_adapt = xt::adapt(shape);
auto tensor = xt::eval(2 * shape_adapt);
```
The resulting type of `tensor` is `xtensor_contai…
-
I'm trying to run a simple code example to test out slicing arrays.
However I'm getting both bizarre results and errors:
```cpp
xt::xarray arr1
{ {1.0, 2.0, 3.0},
…
-
As title
# Code
```python
class xtensor(torch.Tensor):
pass
# This is fine
a = torch.randn(3,3)
xtensor(a)
# This raises exception
x = (a == a)
xtensor(x)
```
The exception loo…
-
For some reason, calling `argsort()` on an rarray like this one crashes, but works on a column major xarray.
```cpp
// [[Rcpp::depends(xtensor)]]
// [[Rcpp::plugins(cpp14)]]
#include
#includ…
-
I'm attempting to bind a `xt::pyarray` to a Numpy array of arrays, but I am getting compilation errors instantiating the `pyarray`. The error is a bit long to include here, the relevant bit is
>…