Johan Mabille
Johan Mabille
> Wrong link, probably? Indeed, sorry for that, here is the correct one: https://xtensor.readthedocs.io/en/latest/expression.html#element-access > This compiles (added reshape), but crashes on execution Can you print the shapes of both...
OK, so the shpaes are compatible, I would try the following: ```cpp auto channels = xt::eval(xt::empty({ 4, activeAreaImageHeight * activeAreaImageWidth / 4 })); auto image_view = xt::eval(xt::view(activeAreaImageR1, xt::range(0, 2))); auto...
Hi, [xtensor-blas](https://github.com/xtensor-stack/xtensor-blas) provides these operations for matrices and vectors. We haven't implemented the general dot for tensors yet.
Hi, We've dropped support for gcc-7 as it is really outdated now. If you can't upgrade your system compiler, you can install [micromamba](https://mamba.readthedocs.io/en/latest/installation/micromamba-installation.html#automatic-install), cd to xtensor, and then tun the...
Closing as we don't support gcc 7 anymore, the only solution is to upgrade the compiler (either the systme one, or using micromamba).
Thanks for doing it, I had totally forgotten it Oo
Not sure about modules (I need to educate myself to modules and what they imply), totally sure for using concepts as much as possible.
Can you please post a complete minimal reproducer? A lot of information is missing from your initial post. From what I understand: - if `delta_sigx_l1b` is a X by 4096...
With the master branch, the following code: ```cpp auto t = xtensor::from_shape({1, 4096, 1}); auto v = xt::view(t, 0, xt::range(0, 4052), 0); std::cout
> vw as stated above should be a 1 by 4052 by 1 vector Actually it should not, it should be a 1-D vector with 4052 elements. If you want...