xtensor-blas 计算不正确

xtensor-blas incorrect computation

我是第一次尝试使用 xtensor-blas。我有 linking to it, but finally, I've done that and tried to run the sample programs。但是,作为输出,第一个得到 0,第二个得到 0, -inf

我正在使用 Windows 10 x64Clion 2021.1
使用 anaconda
安装 cmake 3.19.7xtensor 0.23.4xtensor-blas 0.19.0openblas 0.3.13lapack 3.6.1 使用 Microsoft Visual Studio19\Community\VC\Tools\MSVC.28.29910\bin\HostX64\x64\cl.exe

编译
cmake_minimum_required(VERSION 3.19)
project(tstxtensor6)

set(CMAKE_CXX_STANDARD 20)

find_package(xtensor)
find_package(xtensor-blas)
add_executable(${PROJECT_NAME} main.cpp)

target_link_libraries(${PROJECT_NAME} xtensor xtensor-blas)
#include <xtensor-blas/xlinalg.hpp>

int main()
{
    {
        xt::xarray<double> a = {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}};
        auto d = xt::linalg::det(a);
        std::cout << d << std::endl;  // 6.661338e-16
    }
    {
        xt::xarray<double> a = {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}};
        auto d = xt::linalg::slogdet(a);
        std::cout << std::get<0>(d) << ", " << std::get<1>(d) << std::endl;  // 1, -34.9450...
    }
}

问题在于使用奇异矩阵的示例。它的行列式应为 0,因为您的代码输出正确。

xtensor-blas 的 pull request 中讨论了这种情况,解决方案是更改示例。