Remove all trailing whitespace except lapack-netlib
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
This commit is contained in:
@@ -75,7 +75,7 @@ static int (*her2_thread[])(BLASLONG, FLOAT *, FLOAT *, BLASLONG, FLOAT *, BLASL
|
||||
|
||||
#ifndef CBLAS
|
||||
|
||||
void NAME(char *UPLO, blasint *N, FLOAT *ALPHA,
|
||||
void NAME(char *UPLO, blasint *N, FLOAT *ALPHA,
|
||||
FLOAT *x, blasint *INCX, FLOAT *y, blasint *INCY, FLOAT *a, blasint *LDA){
|
||||
|
||||
char uplo_arg = *UPLO;
|
||||
@@ -100,7 +100,7 @@ void NAME(char *UPLO, blasint *N, FLOAT *ALPHA,
|
||||
|
||||
if (uplo_arg == 'U') uplo = 0;
|
||||
if (uplo_arg == 'L') uplo = 1;
|
||||
|
||||
|
||||
info = 0;
|
||||
|
||||
if (lda < MAX(1, n)) info = 9;
|
||||
@@ -113,7 +113,7 @@ void NAME(char *UPLO, blasint *N, FLOAT *ALPHA,
|
||||
BLASFUNC(xerbla)(ERROR_NAME, &info, sizeof(ERROR_NAME));
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
#else
|
||||
|
||||
void CNAME(enum CBLAS_ORDER order, enum CBLAS_UPLO Uplo, blasint n, FLOAT *ALPHA, FLOAT *x, blasint incx, FLOAT *y, blasint incy, FLOAT *a, blasint lda) {
|
||||
@@ -193,7 +193,7 @@ void CNAME(enum CBLAS_ORDER order, enum CBLAS_UPLO Uplo, blasint n, FLOAT *ALPHA
|
||||
} else {
|
||||
|
||||
(her2_thread[uplo])(n, ALPHA, x, incx, y, incy, a, lda, buffer, nthreads);
|
||||
|
||||
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user