diff options
author | Isaac Dunham <ibid.ag@gmail.com> | 2016-01-08 20:14:55 -0800 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2016-01-11 21:24:24 +0000 |
commit | 5e50b66bc41b43ffb014c1f73aad38f75c82b127 (patch) | |
tree | 44f7ab254104a980d701aef5befa0f2f894cc9fe /testing | |
parent | 6a93a8937b6ba0a79b31ec9d21ffdcff8e46e196 (diff) | |
download | aports-5e50b66bc41b43ffb014c1f73aad38f75c82b127.tar.bz2 aports-5e50b66bc41b43ffb014c1f73aad38f75c82b127.tar.xz |
testing/openblas: rebuild with support for 32 cores
Diffstat (limited to 'testing')
-rw-r--r-- | testing/openblas/APKBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/testing/openblas/APKBUILD b/testing/openblas/APKBUILD index 1ca3524e1..654219fe2 100644 --- a/testing/openblas/APKBUILD +++ b/testing/openblas/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Isaac Dunham <ibid.ag@gmail.com> pkgname=openblas pkgver=0.2.15 -pkgrel=0 +pkgrel=1 pkgdesc="A fast BSD-licensed BLAS based on gotoBLAS2, with LAPACK" url="http://www.openblas.net" arch="all" @@ -33,7 +33,8 @@ esac # USE_OPENMP=0: see GCC bug 60035 # NO_AFFINITY: don't expect to work on musl, also breaks R -FLAGS="USE_OPENMP=0 NO_LAPACK=0 NUM_THREADS=8 MAJOR_VERSION=3 \ +# NUM_THREADS=32: match CONFIG_NR_CPUS +FLAGS="USE_OPENMP=0 NO_LAPACK=0 NUM_THREADS=32 MAJOR_VERSION=3 \ NO_AFFINITY=1 DYNAMIC_ARCH=$DYNAMIC_ARCH" build() { |