vakokako
vakokako
same here, on Ubuntu, after authenticating in chrome via google account, it tries to redirect to the Lition, but nothing happens. I could however login via email directly in the...
Super nice feature!
@HDembinski thanks for all your input, here is an example of the problem we are experiencing: [godbolt](https://godbolt.org/z/oaPo6n17h).
Here is our solution axis to this: [godbolt](https://godbolt.org/z/f8fcrd6rd). This is achieved by adding a bool flag `mIsIntegral` and changing the computation of index if we now that the axis is...
you could of course do `storage = storage_adaptor(std::vector(1000));`, but I think it would be nice if the adaptor would support the direct assignment.
The code from the example is just there to show when the call to the `operator=` happens. The actual task is expanding the bounds to fit the desired values. Our...
Yes, `XTENSOR_ENABLE_ASSERT` is enabled.
The build only fails on the older msvc 19.0, but it's not clear why. It says `use of undefined type 'xt::detail::get_fixed_size'`, but this should use the specialization in xshape.hpp at...
Something like this: ```cpp template auto&& reshapedZeros(C&& c, S&& s) { c.reshape(std::forward(s)); c.fill(0); return std::forward(c); } auto t = reshapedZeros(xt::xarray::from_shape({5}), std::array{4, 4}); ```
I could use `xt::sort(array, xt::placeholders::_)`, but it flattens the result and also this should be the default behaviour of `xt::sort`.