summaryrefslogtreecommitdiff
path: root/math/openblas/files/patch-interface_gemv.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/openblas/files/patch-interface_gemv.c')
-rw-r--r--math/openblas/files/patch-interface_gemv.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/math/openblas/files/patch-interface_gemv.c b/math/openblas/files/patch-interface_gemv.c
new file mode 100644
index 000000000000..af1999348fe7
--- /dev/null
+++ b/math/openblas/files/patch-interface_gemv.c
@@ -0,0 +1,14 @@
+--- 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();