projects
/
openblas.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e1e70ba
)
[PATCH] Revert #3252
author
Martin Kroeker
<martin@ruby.chemie.uni-freiburg.de>
Sun, 24 Oct 2021 21:57:06 +0000
(23:57 +0200)
committer
Anton Gladky
<gladk@debian.org>
Sat, 30 Oct 2021 00:01:09 +0000
(
01:01
+0100)
Gbp-Pq: Name 3422.patch
interface/trsv.c
patch
|
blob
|
history
diff --git
a/interface/trsv.c
b/interface/trsv.c
index 6a6e8f8bab961c4f6da86df97ebd745ab6738552..a054d8eeb6b8b696b8e4c45d224a57ce3652c664 100644
(file)
--- a/
interface/trsv.c
+++ b/
interface/trsv.c
@@
-188,12
+188,6
@@
void CNAME(enum CBLAS_ORDER order, enum CBLAS_UPLO Uplo,
if (n == 0) return;
- if (incx == 1 && trans == 0 && n < 50) {
- buffer = NULL;
- (trsv[(trans<<2) | (uplo<<1) | unit])(n, a, lda, x, incx, buffer);
- return;
- }
-
IDEBUG_START;
FUNCTION_PROFILE_START();