Fix BLAS, BLAS-like functions and Generic RISC-V kernels

* Fixed gemmt, imatcopy, zimatcopy_cnc functions
* Fixed cblas_cscal testing in ctest
* Removed rotmg unreacheble code
* Added zero size checks
This commit is contained in:
kseniyazaytseva
2023-03-17 14:28:26 +03:00
committed by Andrey Sokolov
parent 88e994116c
commit ff41cf5c49
17 changed files with 201 additions and 124 deletions
-1
View File
@@ -40,7 +40,6 @@ int CNAME(BLASLONG rows, BLASLONG cols, FLOAT alpha_r, FLOAT alpha_i, FLOAT *a,
if ( rows <= 0 ) return(0);
if ( cols <= 0 ) return(0);
if ( alpha_r == 1.0 && alpha_i == 0.0 ) return (0);
aptr = a;
lda *= 2;