xtensor-blas icon indicating copy to clipboard operation
xtensor-blas copied to clipboard

BLAS extension to xtensor

Results 57 xtensor-blas issues
Sort by recently updated
recently updated
newest added

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.