Skip to content

Commit 7031ae2

Browse files
tornariaahesford
authored andcommitted
openblas: update to 0.3.33.
1 parent 0083d46 commit 7031ae2

3 files changed

Lines changed: 31 additions & 15 deletions

File tree

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
See: https://github.com/OpenMathLib/OpenBLAS/issues/5787#issuecomment-4462191554
2+
3+
From 26c4eb65d1b60005d6556e432f4a8989efc5b6e6 Mon Sep 17 00:00:00 2001
4+
From: Martin Kroeker <martin@ruby.chemie.uni-freiburg.de>
5+
Date: Fri, 15 May 2026 20:10:51 +0200
6+
Subject: [PATCH] Restore the quick return in common code - the earlier one is
7+
CBLAS only
8+
9+
---
10+
interface/trsm.c | 4 ++++
11+
1 file changed, 4 insertions(+)
12+
13+
diff --git a/interface/trsm.c b/interface/trsm.c
14+
index ae35d0d3b7..069df1aa5c 100644
15+
--- a/interface/trsm.c
16+
+++ b/interface/trsm.c
17+
@@ -381,8 +381,12 @@ if (strcmp(gotoblas_corename(), "armv9sme") == 0
18+
#endif
19+
#endif
20+
21+
+
22+
+
23+
+//end of the ifndef CBLAS ... else ... section
24+
#endif
25+
26+
+ if ((args.m == 0) || (args.n == 0)) return;
27+
IDEBUG_START;
28+
29+
FUNCTION_PROFILE_START();

srcpkgs/openblas/patches/arm-fix-float16.patch

Lines changed: 0 additions & 13 deletions
This file was deleted.

srcpkgs/openblas/template

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Template file for 'openblas'
22
pkgname=openblas
3-
version=0.3.32
3+
version=0.3.33
44
revision=1
55
build_style=gnu-makefile
66
make_build_args="HOSTCC=gcc USE_OPENMP=1"
@@ -13,7 +13,7 @@ license="BSD-3-Clause"
1313
homepage="https://www.openblas.net/"
1414
changelog="https://raw.githubusercontent.com/xianyi/OpenBLAS/develop/Changelog.txt"
1515
distfiles="https://github.com/xianyi/OpenBLAS/archive/v${version}.tar.gz"
16-
checksum=f8a1138e01fddca9e4c29f9684fd570ba39dedc9ca76055e1425d5d4b1a4a766
16+
checksum=6761af1d9f5d353ab4f0b7497be2643313b36c8f31caec0144bfef198e71e6ab
1717

1818
case "$XBPS_TARGET_MACHINE" in
1919
ppc64*) ;;

0 commit comments

Comments
 (0)