Remove all trailing whitespace except lapack-netlib
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
This commit is contained in:
@@ -82,13 +82,13 @@ static int (*tbmv_thread[])(BLASLONG, BLASLONG, FLOAT *, BLASLONG, FLOAT *, BLAS
|
||||
#ifndef CBLAS
|
||||
|
||||
void NAME(char *UPLO, char *TRANS, char *DIAG,
|
||||
blasint *N, blasint *K,
|
||||
blasint *N, blasint *K,
|
||||
FLOAT *a, blasint *LDA, FLOAT *x, blasint *INCX){
|
||||
|
||||
|
||||
char uplo_arg = *UPLO;
|
||||
char trans_arg = *TRANS;
|
||||
char diag_arg = *DIAG;
|
||||
|
||||
|
||||
blasint n = *N;
|
||||
blasint k = *K;
|
||||
blasint lda = *LDA;
|
||||
@@ -167,7 +167,7 @@ void CNAME(enum CBLAS_ORDER order, enum CBLAS_UPLO Uplo,
|
||||
if (TransA == CblasTrans) trans = 1;
|
||||
if (TransA == CblasConjNoTrans) trans = 0;
|
||||
if (TransA == CblasConjTrans) trans = 1;
|
||||
|
||||
|
||||
if (Diag == CblasUnit) unit = 0;
|
||||
if (Diag == CblasNonUnit) unit = 1;
|
||||
|
||||
@@ -211,9 +211,9 @@ void CNAME(enum CBLAS_ORDER order, enum CBLAS_UPLO Uplo,
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
if (n == 0) return;
|
||||
|
||||
|
||||
IDEBUG_START;
|
||||
|
||||
FUNCTION_PROFILE_START();
|
||||
|
||||
Reference in New Issue
Block a user