xtensor-blas
xtensor-blas copied to clipboard
BLAS extension to xtensor
Hello, currently [xt::linalg::outer](https://xtensor-blas.readthedocs.io/en/latest/reference.html#_CPPv4I00EN2xt6linalg5outerEDaRK11xexpressionI1TERK11xexpressionI1OE) only supports 1D vectors and is missing higher-dimensional objects. A quick workaround could be: ``` template static inline auto outer(expression_type &M, expression_type &W) { auto &&dM =...
This is a super minor issue but it seems that the latest release of `xtensor-blas` is `0.20.0` from 2022 but the latest GitHub release is `0.6.1` from 2017, which is...
Hi everyone, I try to use cmake to manage my all dependencies. Here is the code I want it to download xtensor and related packages automatically if find_package is failed:...
Super useful for `meson`, and seems to have been missed for `xtensor-blas`, it is generated for every other sub-project of the xtensor-stack.
I want to solve linear equations like AX = B where A is a n-by-n nonsingular square matrix, and B is a n-by-m matrix. When I tried to make use...
With gcc-14 using -Wall -Wextra I get a warning about adding brackets to a "a || b && c" statement to make clear && is evaluated first.
This fix resolves a compilation error `gelsd.tcc:146:25: error: invalid conversion from 'const float*' to 'cxxlapack::FLOAT_COMPLEX*'` when linalg::lstsq is called with complex arguments. Note that `complex` and other types were unaffected....
Hi, I noticed that the vcpkg port is still at version 0.21, while the latest release is 0.22 Would it be possible to update the vcpkg package? Thanks for your...
xtensor-blas, at least in tests in [`test/CMakeLists.txt`](https://github.com/xtensor-stack/xtensor-blas/blob/master/test/CMakeLists.txt) and in [`benchmark/CMakeLists.txt`](https://github.com/xtensor-stack/xtensor-blas/blob/master/benchmark/CMakeLists.txt), sets a default C++ standard together with an option (CPP17/CPP20/CPP23, depending on xtensor-blas version) to set a more recent standard....