Accepting request 843798 from science

- Update to version 0.3.12
  common:
  * Fixed missing BLAS/LAPACK functions (inadvertently dropped during
    the build system restructuring to support selective compilation)
  * Fixed argument conversion macro in LAPACKE_zgesvdq (LAPACK #458)
  
  power:
  * Added optimized SCOPY/CCOPY kernels for POWER10
  * Increased and unified the default size of the GEMM buffer
  * Fixed building for POWER10 in DYNAMIC_ARCH mode
  * POWER10 compatibility test now checks binutils version as well
  * Cleaned up compiler warnings
  x86_64:
  * Corrected compiler version checks for AVX2 compatibility
  * Added compiler option -mavx2 for building with flang
  * Fixed direct SGEMM pathway for small matrix sizes (broken by
    the code refactoring in 0.3.11)
  * Fixed unhandled partial register clobbers in several kernels
    for AXPY,DOT,GEMV_N and GEMV_T flagged by gcc10 tree-vectorizer
  armv8:
  * Improved Apple Vortex support to include cross-compiling
- Drop fix-build.patch, merged upstream.

OBS-URL: https://build.opensuse.org/request/show/843798
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/openblas?expand=0&rev=38
This commit is contained in:
Dominique Leuenberger 2020-10-28 08:58:04 +00:00 committed by Git OBS Bridge
commit 092da3d221
5 changed files with 34 additions and 18 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bc4617971179e037ae4e8ebcd837e46db88422f7b365325bd7aba31d1921a673
size 12326482

3
OpenBLAS-0.3.12.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:65a7d3a4010a4e3bd5c0baa41a234797cd3a1735449a4a5902129152601dc57b
size 12325103

View File

@ -1,10 +0,0 @@
Index: OpenBLAS-0.3.11/kernel/x86_64/dgemm_tcopy_16_skylakex.c
===================================================================
--- OpenBLAS-0.3.11.orig/kernel/x86_64/dgemm_tcopy_16_skylakex.c
+++ OpenBLAS-0.3.11/kernel/x86_64/dgemm_tcopy_16_skylakex.c
@@ -126,4 +126,5 @@ int CNAME(BLASLONG dim_second, BLASLONG
}
src1 += src_inc;
}
+ return 0;
}

View File

@ -1,3 +1,32 @@
-------------------------------------------------------------------
Sat Oct 24 16:27:35 UTC 2020 - Ismail Dönmez <idonmez@suse.com>
- Update to version 0.3.12
common:
* Fixed missing BLAS/LAPACK functions (inadvertently dropped during
the build system restructuring to support selective compilation)
* Fixed argument conversion macro in LAPACKE_zgesvdq (LAPACK #458)
power:
* Added optimized SCOPY/CCOPY kernels for POWER10
* Increased and unified the default size of the GEMM buffer
* Fixed building for POWER10 in DYNAMIC_ARCH mode
* POWER10 compatibility test now checks binutils version as well
* Cleaned up compiler warnings
x86_64:
* Corrected compiler version checks for AVX2 compatibility
* Added compiler option -mavx2 for building with flang
* Fixed direct SGEMM pathway for small matrix sizes (broken by
the code refactoring in 0.3.11)
* Fixed unhandled partial register clobbers in several kernels
for AXPY,DOT,GEMV_N and GEMV_T flagged by gcc10 tree-vectorizer
armv8:
* Improved Apple Vortex support to include cross-compiling
- Drop fix-build.patch, merged upstream.
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Oct 21 09:18:18 UTC 2020 - Ismail Dönmez <idonmez@suse.com> Wed Oct 21 09:18:18 UTC 2020 - Ismail Dönmez <idonmez@suse.com>

View File

@ -18,8 +18,8 @@
%global flavor @BUILD_FLAVOR@%{nil} %global flavor @BUILD_FLAVOR@%{nil}
%define _vers 0_3_11 %define _vers 0_3_12
%define vers 0.3.11 %define vers 0.3.12
%define pname openblas %define pname openblas
%bcond_with ringdisabled %bcond_with ringdisabled
@ -171,8 +171,6 @@ Source2: README.HPC.SUSE
Patch1: openblas-noexecstack.patch Patch1: openblas-noexecstack.patch
# PATCH port # PATCH port
Patch2: openblas-s390.patch Patch2: openblas-s390.patch
# PATCH-FIX-UPSTREAM fix-build.patch
Patch3: fix-build.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -278,7 +276,6 @@ This package contains headers for OpenBLAS.
%setup -q -n OpenBLAS-%{version} %setup -q -n OpenBLAS-%{version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%ifarch s390 %ifarch s390
sed -i -e "s@m32@m31@" Makefile.system sed -i -e "s@m32@m31@" Makefile.system
%endif %endif