xtensor-blas
xtensor-blas copied to clipboard
BLAS extension to xtensor
What are the dependencies other than `openblas/lapack`? since I installed everything that was noted in the installation guide [here](https://github.com/xtensor-stack/xtensor-blas#installation). The compilation goes without a hitch, but when I import the...
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`...
The xtensor-blas tests add a "-march=native" flag on non-Win32 systems, both gcc and clang, at ll.60,69 in test/CMakeLists.txt. But this flag is not universal, and so the test build fails...
The following example causing runtime error: ``` #ifndef __TESTCPP__ #define __TESTCPP__ #include #include #include #include #include #include #include #include "xtensor-blas/xlinalg.hpp" int main() { xt::xtensor_fixed c = xt::linspace(1.0, 16, 16); std::cout
This fixes #169 and correctly determines BLAS and LAPACK location. Both target_compile_features() and target_link_libraries() are meant to be used in CMakeLists.txt file (not the config). CMake will then export this...
I'm trying to use xtensor-blas for the first time. I've had lots of difficulties linking to it, but finally, I've done that and tried to run the sample programs from...
I tried to compile a small test with xtensor-blas but I can't get cmake to configure properly. I installed xtensor-blas using cmake in a user directory pointed by CMAKE_PREFIX_PATH. The...
Add check in CMakeLists.txt for xtensor target. This follows the pattern established in xtensor-python.
CMake Error at CMakeLists.txt:47 (find_package): Could not find a configuration file for package "xtensor" that is compatible with requested version "0.21". The following configuration files were considered but not accepted:...
We currently use FLENS as blas wrappers for C++. Might be interesting to evaluate BLASPP: https://bitbucket.org/icl/blaspp/