From 6a2ce6d4c1e9371e0486d8fd86e5915e13e8ca89 Mon Sep 17 00:00:00 2001 From: Debian Science Maintainers Date: Sat, 16 May 2026 11:14:12 +0200 Subject: [PATCH] Fix TRSM on Barcelona target (and possibly others) MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Origin: upstream, https://github.com/OpenMathLib/OpenBLAS/commit/26c4eb65d1b60005d6556e432f4a8989efc5b6e6 Bug: https://github.com/OpenMathLib/OpenBLAS/issues/5787 https://github.com/OpenMathLib/OpenBLAS/issues/5810 Reviewed-by: Sébastien Villemot Last-Update: 2026-05-16 This should fix i386 test failures such as this one: https://buildd.debian.org/status/fetch.php?pkg=openblas&arch=i386&ver=0.3.33%2Bds-1&stamp=1777066182&raw=0 Last-Update: 2026-05-16 Gbp-Pq: Name trsm-barcelona.patch --- interface/trsm.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/interface/trsm.c b/interface/trsm.c index ae35d0d..069df1a 100644 --- a/interface/trsm.c +++ b/interface/trsm.c @@ -381,8 +381,12 @@ if (strcmp(gotoblas_corename(), "armv9sme") == 0 #endif #endif + + +//end of the ifndef CBLAS ... else ... section #endif + if ((args.m == 0) || (args.n == 0)) return; IDEBUG_START; FUNCTION_PROFILE_START(); -- 2.30.2