revert symv changes for now

This commit is contained in:
Martin Kroeker 2021-05-29 15:40:03 +02:00 committed by GitHub
parent 1217eb910d
commit 734bd265a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 4 deletions

View File

@ -170,10 +170,6 @@ void CNAME(enum CBLAS_ORDER order, enum CBLAS_UPLO Uplo, blasint n, FLOAT alpha,
if (alpha == ZERO) return; if (alpha == ZERO) return;
if (incx == 1 && incy == 1 && n*n < 2304 *GEMM_MULTITHREAD_THRESHOLD) {
(symv[uplo])(n, n, alpha, a, lda, x, incx, y, incy, buffer);
return;
}
IDEBUG_START; IDEBUG_START;
FUNCTION_PROFILE_START(); FUNCTION_PROFILE_START();