Skip to content

Commit 95e5970

Browse files
committed
openblas: bump to version 0.3.30
This change updates the version to 0.3.30 Added patch to fix x86 builds. Also sent upstream: OpenMathLib/OpenBLAS#5418 Signed-off-by: Alexandru Ardelean <[email protected]>
1 parent 51e254c commit 95e5970

File tree

2 files changed

+43
-2
lines changed

2 files changed

+43
-2
lines changed

libs/openblas/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
include $(TOPDIR)/rules.mk
66

77
PKG_NAME:=OpenBLAS
8-
PKG_VERSION:=0.3.28
8+
PKG_VERSION:=0.3.30
99
PKG_RELEASE:=1
1010

1111
PKG_SOURCE:=OpenBLAS-$(PKG_VERSION).tar.gz
1212
PKG_SOURCE_URL:=https://github.com/OpenMathLib/OpenBLAS/releases/download/v$(PKG_VERSION)/
13-
PKG_HASH:=f1003466ad074e9b0c8d421a204121100b0751c96fc6fcf3d1456bd12f8a00a1
13+
PKG_HASH:=27342cff518646afb4c2b976d809102e368957974c250a25ccc965e53063c95d
1414
PKG_LICENSE:=BSD-3-Clause
1515
PKG_CPE_ID:=cpe:/a:openblas_project:openblas
1616
PKG_MAINTAINER:=Alexandru Ardelean <[email protected]>
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
--- a/param.h
2+
+++ b/param.h
3+
@@ -4179,5 +4179,38 @@ Until then, just keep it different than
4+
#define SHUFPS_39 shufps $0x39,
5+
#endif
6+
7+
+#if defined(ARCH_X86)
8+
+#ifndef CGEMM3M_DEFAULT_R
9+
+#define CGEMM3M_DEFAULT_R 12288
10+
+#endif
11+
+
12+
+#ifndef CGEMM3M_DEFAULT_UNROLL_M
13+
+#define CGEMM3M_DEFAULT_UNROLL_M 8
14+
+#endif
15+
+
16+
+#ifndef CGEMM3M_DEFAULT_P
17+
+#define CGEMM3M_DEFAULT_P 320
18+
+#endif
19+
+
20+
+#ifndef CGEMM3M_DEFAULT_Q
21+
+#define CGEMM3M_DEFAULT_Q 224
22+
+#endif
23+
+
24+
+#ifndef ZGEMM3M_DEFAULT_R
25+
+#define ZGEMM3M_DEFAULT_R 12288
26+
+#endif
27+
+
28+
+#ifndef ZGEMM3M_DEFAULT_Q
29+
+#define ZGEMM3M_DEFAULT_Q 224
30+
+#endif
31+
+
32+
+#ifndef ZGEMM3M_DEFAULT_P
33+
+#define ZGEMM3M_DEFAULT_P 224
34+
+#endif
35+
+
36+
+#ifndef ZGEMM3M_DEFAULT_UNROLL_M
37+
+#define ZGEMM3M_DEFAULT_UNROLL_M 4
38+
+#endif
39+
+#endif
40+
41+
#endif

0 commit comments

Comments
 (0)