Mentions légales du service

Skip to content
Snippets Groups Projects
Commit b885f461 authored by hhakim's avatar hhakim
Browse files

Fix minor bug/typo in OpenBLAS trans* parameter.

parent 2407659a
No related branches found
No related tags found
No related merge requests found
......@@ -297,7 +297,7 @@ void Faust::gemv(const Faust::MatDense<FPP,Cpu> & A,const Faust::Vect<FPP,Cpu> &
#ifdef __GEMM_WITH_OPENBLAS__
CBLAS_TRANSPOSE transA,transB;
if (typeA=='T' || typeB == 'H')
if (typeA=='T' || typeA == 'H')
transA = CblasTrans;
else
transA = CblasNoTrans;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment