summaryrefslogtreecommitdiff
path: root/math/openblas/files
diff options
context:
space:
mode:
authorOleg Sidorkin <osidorkin@gmail.com>2021-10-12 09:50:58 -0700
committerNeel Chauhan <nc@FreeBSD.org>2021-10-12 09:50:58 -0700
commit94c6fb8e9e9a4042e21758869f59908932c20a07 (patch)
tree48bbe07af86f003b95bb7681ba41b674cd452c7b /math/openblas/files
parentbiology/biostar-tools: Add biology/bamutil to metaport deps (diff)
math/openblas: update to 0.3.18
PR: 259038 Approved by: phd_kimberlite AT yahoo DOT co DOT jp (maintainer)
Diffstat (limited to 'math/openblas/files')
-rw-r--r--math/openblas/files/patch-interface_gemv.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/math/openblas/files/patch-interface_gemv.c b/math/openblas/files/patch-interface_gemv.c
deleted file mode 100644
index af1999348fe7..000000000000
--- a/math/openblas/files/patch-interface_gemv.c
+++ /dev/null
@@ -1,14 +0,0 @@
---- 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();