From fce2e450b8af95589cbdf6d76ef52cc0bbf4890a Mon Sep 17 00:00:00 2001 From: conrad Date: Fri, 14 Feb 2025 14:12:24 +1000 Subject: [PATCH] allow use of blas::dot() --- include/armadillo_bits/fn_dot.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/armadillo_bits/fn_dot.hpp b/include/armadillo_bits/fn_dot.hpp index a9c26ca5..0a9e2c1e 100644 --- a/include/armadillo_bits/fn_dot.hpp +++ b/include/armadillo_bits/fn_dot.hpp @@ -256,7 +256,7 @@ dot if( &A == &B ) { // We can do it directly! - return op_dot::direct_dot_arma(A.n_nonzero, A.values, A.values); + return op_dot::direct_dot(A.n_nonzero, A.values, A.values); } else {