You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
xt::linalg::kron: support arguments of arbitrary number of dimensions
Before this commit, `xt::linalg::kron` only supports 2D arguments. This
commit proposes to add support for argument with any number of
dimensions. This change of behavior is coherent with what `numpy.kron`
does.
The current implementation is a performance step back compared to the
previous one. Until a better generic implementation is found, keeping a
couple of specialized implementations for the most used scenarios makes
sense.
Tested with `./test/test_xtensor_blas --gtest_filter=xlinalg.kron*`.
0 commit comments