mirror of
https://git.freebsd.org/ports.git
synced 2025-06-24 14:10:30 -04:00
Same issue as in https://github.com/xianyi/OpenBLAS/issues/3309. While it builds on i386 and powerpc64, for some reason it fails on amd64.
14 lines
383 B
C
14 lines
383 B
C
--- interface/gemv.c.orig 2021-07-14 00:09:14 UTC
|
|
+++ interface/gemv.c
|
|
@@ -202,11 +202,6 @@ void CNAME(enum CBLAS_ORDER order,
|
|
|
|
if (alpha == ZERO) return;
|
|
|
|
- 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);
|
|
- return;
|
|
- }
|
|
-
|
|
IDEBUG_START;
|
|
|
|
FUNCTION_PROFILE_START();
|