xtensor-stack / xtensor-blas

BLAS extension to xtensor
BSD 3-Clause "New" or "Revised" License
157 stars 55 forks source link

linalg::dot throws exception "No valid layout chosen." for latest version of xtensor #185

Closed nunupeke closed 3 years ago

nunupeke commented 3 years ago
auto a = xt::random::randn<double>({10, 10});
auto b = xt::random::randn<double>({10, 10});
xt::linalg::dot(a, b)

throws "Standard Exception: No valid layout chosen." for xtensor 0.23.1, xtensor-blas 0.19.0, and openblas 0.3.13.

For xtensor 0.23.0 it works just fine.