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