Update gemv.c
This commit is contained in:
parent
35daee8c6f
commit
7f0ebb21ed
|
@ -201,7 +201,9 @@ void CNAME(enum CBLAS_ORDER order,
|
||||||
if (beta != ONE) SCAL_K(leny, 0, 0, beta, y, blasabs(incy), NULL, 0, NULL, 0);
|
if (beta != ONE) SCAL_K(leny, 0, 0, beta, y, blasabs(incy), NULL, 0, NULL, 0);
|
||||||
|
|
||||||
if (alpha == ZERO) return;
|
if (alpha == ZERO) return;
|
||||||
#if 1
|
|
||||||
|
#if 0
|
||||||
|
/* this optimization causes stack corruption on x86_64 under OSX, Windows and FreeBSD */
|
||||||
if (trans == 0 && incx == 1 && incy == 1 && m*n < 2304 *GEMM_MULTITHREAD_THRESHOLD) {
|
if (trans == 0 && incx == 1 && incy == 1 && m*n < 2304 *GEMM_MULTITHREAD_THRESHOLD) {
|
||||||
GEMV_N(m, n, 0, alpha, a, lda, x, incx, y, incy, NULL);
|
GEMV_N(m, n, 0, alpha, a, lda, x, incx, y, incy, NULL);
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in New Issue