772 lines
23 KiB
RPMSpec
772 lines
23 KiB
RPMSpec
%bcond_with system_lapack
|
|
# Version of bundled lapack
|
|
%global lapackver 3.5.0
|
|
|
|
# DO NOT "CLEAN UP" OR MODIFY THIS SPEC FILE WITHOUT ASKING THE
|
|
# MAINTAINER FIRST!
|
|
#
|
|
# OpenBLAS is hand written assembler code and it has a limited number
|
|
# of supported architectures. Don't enable any new architectures /
|
|
# processors a) without checking that it is actually supported and b)
|
|
# without modifying the target flags.
|
|
#
|
|
# The same spec is also used on the EPEL branches, meaninng that some
|
|
# "obsoleted" features are still kept in the spec.
|
|
|
|
Name: openblas
|
|
Version: 0.2.19
|
|
Release: 1%{?dist}
|
|
Summary: An optimized BLAS library based on GotoBLAS2
|
|
Group: Development/Libraries
|
|
License: BSD
|
|
URL: https://github.com/xianyi/OpenBLAS/
|
|
Source0: https://github.com/xianyi/OpenBLAS/archive/v%{version}.tar.gz
|
|
# Use system lapack
|
|
Patch0: openblas-0.2.15-system_lapack.patch
|
|
# Drop extra p from threaded library name
|
|
Patch1: openblas-0.2.5-libname.patch
|
|
# Don't use constructor priorities on too old architectures
|
|
Patch2: openblas-0.2.15-constructor.patch
|
|
# Supply the proper flags to the test makefile
|
|
Patch3: openblas-0.2.19-tests.patch
|
|
|
|
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
|
|
|
|
BuildRequires: gcc-gfortran
|
|
BuildRequires: perl-devel
|
|
|
|
# Do we have execstack?
|
|
%if 0%{?rhel} == 7
|
|
%ifarch ppc64le aarch64
|
|
%global execstack 0
|
|
%else
|
|
%global execstack 1
|
|
%endif
|
|
%else
|
|
%global execstack 1
|
|
%endif
|
|
%if %{execstack}
|
|
BuildRequires: /usr/bin/execstack
|
|
%endif
|
|
|
|
# LAPACK
|
|
%if %{with system_lapack}
|
|
%if 0%{?rhel} == 5 || 0%{?rhel} == 6
|
|
BuildRequires: lapack-devel%{?_isa}
|
|
%else
|
|
BuildRequires: lapack-static%{?_isa}
|
|
%endif
|
|
# Do we have LAPACKE? (Needs at least lapack 3.4.0)
|
|
%if 0%{?fedora}
|
|
%global lapacke 1
|
|
%else
|
|
%global lapacke 0
|
|
%endif
|
|
|
|
%else
|
|
# Use bundled LAPACK
|
|
%global lapacke 1
|
|
Provides: bundled(lapack) = %{lapackver}
|
|
%endif
|
|
|
|
# Build 64-bit interface binaries?
|
|
%if 0%{?rhel} == 5 || 0%{?rhel} == 6
|
|
# RPM too old to know __isa_bits in RHEL 5, and lapack64 doesn't exist in RHEL 6
|
|
%global build64 0
|
|
%else
|
|
%if 0%{?__isa_bits} == 64
|
|
%global build64 1
|
|
%else
|
|
%global build64 0
|
|
%endif
|
|
%endif
|
|
|
|
%if %{with system_lapack}
|
|
%if %build64
|
|
BuildRequires: lapack64-static
|
|
%endif
|
|
%endif
|
|
|
|
# Upstream supports the package only on these architectures.
|
|
# Runtime processor detection is not available on other archs.
|
|
ExclusiveArch: x86_64 %{ix86} armv7hl %{power64} aarch64
|
|
|
|
%global base_description \
|
|
OpenBLAS is an optimized BLAS library based on GotoBLAS2 1.13 BSD \
|
|
version. The project is supported by the Lab of Parallel Software and \
|
|
Computational Science, ISCAS. http://www.rdcps.ac.cn
|
|
|
|
|
|
%description
|
|
%{base_description}
|
|
|
|
%package openmp
|
|
Summary: An optimized BLAS library based on GotoBLAS2, OpenMP version
|
|
Group: Development/Libraries
|
|
|
|
%description openmp
|
|
%{base_description}
|
|
|
|
This package contains the library compiled with OpenMP support.
|
|
|
|
%package threads
|
|
Summary: An optimized BLAS library based on GotoBLAS2, pthreads version
|
|
Group: Development/Libraries
|
|
|
|
%description threads
|
|
%{base_description}
|
|
|
|
This package contains the library compiled with threading support.
|
|
|
|
%if %build64
|
|
%package serial64
|
|
Summary: An optimized BLAS library based on GotoBLAS2, serial version
|
|
Group: Development/Libraries
|
|
|
|
%description serial64
|
|
%{base_description}
|
|
|
|
This package contains the sequential library compiled with a 64-bit
|
|
interface.
|
|
|
|
%package openmp64
|
|
Summary: An optimized BLAS library based on GotoBLAS2, OpenMP version
|
|
Group: Development/Libraries
|
|
|
|
%description openmp64
|
|
%{base_description}
|
|
|
|
This package contains the library compiled with OpenMP support and
|
|
64-bit interface.
|
|
|
|
%package threads64
|
|
Summary: An optimized BLAS library based on GotoBLAS2, pthreads version
|
|
Group: Development/Libraries
|
|
|
|
%description threads64
|
|
%{base_description}
|
|
|
|
This package contains the library compiled with threading support and
|
|
64-bit interface.
|
|
|
|
%package serial64_
|
|
Summary: An optimized BLAS library based on GotoBLAS2, serial version
|
|
Group: Development/Libraries
|
|
|
|
%description serial64_
|
|
%{base_description}
|
|
|
|
This package contains the sequential library compiled with a 64-bit
|
|
interface and a symbol name suffix.
|
|
|
|
%package openmp64_
|
|
Summary: An optimized BLAS library based on GotoBLAS2, OpenMP version
|
|
Group: Development/Libraries
|
|
|
|
%description openmp64_
|
|
%{base_description}
|
|
|
|
This package contains the library compiled with OpenMP support and
|
|
64-bit interface and a symbol name suffix.
|
|
|
|
%package threads64_
|
|
Summary: An optimized BLAS library based on GotoBLAS2, pthreads version
|
|
Group: Development/Libraries
|
|
|
|
%description threads64_
|
|
%{base_description}
|
|
|
|
This package contains the library compiled with threading support and
|
|
64-bit interface and a symbol name suffix.
|
|
%endif
|
|
|
|
|
|
%package devel
|
|
Summary: Development headers and libraries for OpenBLAS
|
|
Group: Development/Libraries
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
Requires: %{name}-openmp%{?_isa} = %{version}-%{release}
|
|
Requires: %{name}-threads%{?_isa} = %{version}-%{release}
|
|
%if %build64
|
|
Requires: %{name}-openmp64%{?_isa} = %{version}-%{release}
|
|
Requires: %{name}-threads64%{?_isa} = %{version}-%{release}
|
|
Requires: %{name}-serial64%{?_isa} = %{version}-%{release}
|
|
Requires: %{name}-openmp64_%{?_isa} = %{version}-%{release}
|
|
Requires: %{name}-threads64_%{?_isa} = %{version}-%{release}
|
|
Requires: %{name}-serial64_%{?_isa} = %{version}-%{release}
|
|
%endif
|
|
|
|
%description devel
|
|
%{base_description}
|
|
|
|
This package contains the development headers and libraries.
|
|
|
|
%package static
|
|
Summary: Static version of OpenBLAS
|
|
Group: Development/Libraries
|
|
Requires: %{name}-devel%{?_isa} = %{version}-%{release}
|
|
|
|
%description static
|
|
%{base_description}
|
|
|
|
This package contains the static libraries.
|
|
|
|
%prep
|
|
%setup -q -c -T
|
|
|
|
# Untar source
|
|
tar zxf %{SOURCE0}
|
|
cd OpenBLAS-%{version}
|
|
%if %{with system_lapack}
|
|
%patch0 -p1 -b .system_lapack
|
|
%endif
|
|
%patch1 -p1 -b .libname
|
|
%if 0%{?rhel} == 5
|
|
%patch2 -p1 -b .constructor
|
|
%endif
|
|
%patch3 -p1 -b .tests
|
|
|
|
# Fix source permissions
|
|
find -name \*.f -exec chmod 644 {} \;
|
|
|
|
%if %{with system_lapack}
|
|
# Get rid of bundled LAPACK sources
|
|
rm -rf lapack-netlib
|
|
%endif
|
|
|
|
# Make serial, threaded and OpenMP versions; as well as 64-bit versions
|
|
cd ..
|
|
cp -ar OpenBLAS-%{version} openmp
|
|
cp -ar OpenBLAS-%{version} threaded
|
|
%if %build64
|
|
for d in {serial,threaded,openmp}64{,_}; do
|
|
cp -ar OpenBLAS-%{version} $d
|
|
done
|
|
%endif
|
|
mv OpenBLAS-%{version} serial
|
|
|
|
%if %{with system_lapack}
|
|
# Setup 32-bit interface LAPACK
|
|
mkdir netliblapack
|
|
cd netliblapack
|
|
ar x %{_libdir}/liblapack_pic.a
|
|
# Get rid of duplicate functions. See list in Makefile of lapack directory
|
|
for f in laswp getf2 getrf potf2 potrf lauu2 lauum trti2 trtri getrs; do
|
|
\rm {c,d,s,z}$f.o
|
|
done
|
|
|
|
# LAPACKE
|
|
%if %{lapacke}
|
|
ar x %{_libdir}/liblapacke.a
|
|
%endif
|
|
|
|
# Create makefile
|
|
echo "TOPDIR = .." > Makefile
|
|
echo "include ../Makefile.system" >> Makefile
|
|
echo "COMMONOBJS = \\" >> Makefile
|
|
for i in *.o; do
|
|
echo "$i \\" >> Makefile
|
|
done
|
|
echo -e "\n\ninclude \$(TOPDIR)/Makefile.tail" >> Makefile
|
|
|
|
%if %{lapacke}
|
|
# Copy include files
|
|
cp -a %{_includedir}/lapacke .
|
|
%endif
|
|
cd ..
|
|
|
|
# Copy in place
|
|
for d in serial threaded openmp; do
|
|
cp -pr netliblapack $d
|
|
done
|
|
rm -rf netliblapack
|
|
|
|
|
|
# Setup 64-bit interface LAPACK
|
|
%if %build64
|
|
mkdir netliblapack64
|
|
cd netliblapack64
|
|
ar x %{_libdir}/liblapack64_pic.a
|
|
# Get rid of duplicate functions. See list in Makefile of lapack directory
|
|
for f in laswp getf2 getrf potf2 potrf lauu2 lauum trti2 trtri getrs; do
|
|
\rm {c,d,s,z}$f.o
|
|
done
|
|
|
|
# LAPACKE, no 64-bit interface
|
|
%if %{lapacke}
|
|
ar x %{_libdir}/liblapacke.a
|
|
%endif
|
|
|
|
# Create makefile
|
|
echo "TOPDIR = .." > Makefile
|
|
echo "include ../Makefile.system" >> Makefile
|
|
echo "COMMONOBJS = \\" >> Makefile
|
|
for i in *.o; do
|
|
echo "$i \\" >> Makefile
|
|
done
|
|
echo -e "\n\ninclude \$(TOPDIR)/Makefile.tail" >> Makefile
|
|
|
|
%if %{lapacke}
|
|
# Copy include files
|
|
cp -a %{_includedir}/lapacke .
|
|
%endif
|
|
cd ..
|
|
|
|
# Copy in place
|
|
for d in {serial,threaded,openmp}64{,_}; do
|
|
cp -pr netliblapack64 $d/netliblapack
|
|
done
|
|
rm -rf netliblapack64
|
|
%endif
|
|
%endif
|
|
|
|
%build
|
|
%if !%{lapacke}
|
|
LAPACKE="NO_LAPACKE=1"
|
|
%endif
|
|
|
|
# Maximum possible amount of processors
|
|
NMAX="NUM_THREADS=128"
|
|
|
|
%ifarch %{ix86} x86_64
|
|
TARGET="TARGET=CORE2 DYNAMIC_ARCH=1"
|
|
|
|
# Compability for old versions of GCC
|
|
%if 0%{?rhel} == 5
|
|
export AVX="NO_AVX=1 NO_AVX2=1"
|
|
%endif
|
|
%if 0%{?rhel} == 6
|
|
export AVX="NO_AVX2=1"
|
|
%endif
|
|
|
|
%endif
|
|
%ifarch armv7hl
|
|
TARGET="TARGET=ARMV7 DYNAMIC_ARCH=0"
|
|
%endif
|
|
%ifarch ppc64
|
|
TARGET="TARGET=POWER6 DYNAMIC_ARCH=0"
|
|
%endif
|
|
%ifarch ppc64p7
|
|
TARGET="TARGET=POWER7 DYNAMIC_ARCH=0"
|
|
%endif
|
|
%ifarch ppc64le
|
|
TARGET="TARGET=POWER8 DYNAMIC_ARCH=0"
|
|
%endif
|
|
%ifarch aarch64
|
|
TARGET="TARGET=ARMV8 DYNAMIC_ARCH=0"
|
|
%endif
|
|
|
|
%if 0%{?rhel} == 5
|
|
# Gfortran too old to recognize -frecursive
|
|
FCOMMON=""
|
|
%else
|
|
FCOMMON="-frecursive"
|
|
%endif
|
|
|
|
# Declare some necessary build flags
|
|
make -C serial $TARGET USE_THREAD=0 USE_OPENMP=0 FC=gfortran CC=gcc COMMON_OPT="%{optflags} -fPIC" FCOMMON_OPT="$FCOMMON -fPIC" $NMAX LIBPREFIX="libopenblas" $AVX $LAPACKE INTERFACE64=0
|
|
make -C threaded $TARGET USE_THREAD=1 USE_OPENMP=0 FC=gfortran CC=gcc COMMON_OPT="%{optflags} -fPIC" FCOMMON_OPT="$FCOMMON -fPIC" $NMAX LIBPREFIX="libopenblasp" $AVX $LAPACKE INTERFACE64=0
|
|
# USE_THREAD determines use of SMP, not of pthreads
|
|
make -C openmp $TARGET USE_THREAD=1 USE_OPENMP=1 FC=gfortran CC=gcc COMMON_OPT="%{optflags} -fPIC" FCOMMON_OPT="$FCOMMON -fPIC" $NMAX LIBPREFIX="libopenblaso" $AVX $LAPACKE INTERFACE64=0 EXTRALIB="-fopenmp"
|
|
|
|
%if %build64
|
|
make -C serial64 $TARGET USE_THREAD=0 USE_OPENMP=0 FC=gfortran CC=gcc COMMON_OPT="%{optflags} -fPIC" FCOMMON_OPT="$FCOMMON -fPIC" $NMAX LIBPREFIX="libopenblas64" $AVX $LAPACKE INTERFACE64=1
|
|
make -C threaded64 $TARGET USE_THREAD=1 USE_OPENMP=0 FC=gfortran CC=gcc COMMON_OPT="%{optflags} -fPIC" FCOMMON_OPT="$FCOMMON -fPIC" $NMAX LIBPREFIX="libopenblasp64" $AVX $LAPACKE INTERFACE64=1
|
|
make -C openmp64 $TARGET USE_THREAD=1 USE_OPENMP=1 FC=gfortran CC=gcc COMMON_OPT="%{optflags} -fPIC" FCOMMON_OPT="$FCOMMON -fPIC" $NMAX LIBPREFIX="libopenblaso64" $AVX $LAPACKE INTERFACE64=1 EXTRALIB="-fopenmp"
|
|
|
|
make -C serial64_ $TARGET USE_THREAD=0 USE_OPENMP=0 FC=gfortran CC=gcc COMMON_OPT="%{optflags} -fPIC" FCOMMON_OPT="$FCOMMON -fPIC" $NMAX LIBPREFIX="libopenblas64_" $AVX $LAPACKE INTERFACE64=1 SYMBOLSUFFIX=64_
|
|
make -C threaded64_ $TARGET USE_THREAD=1 USE_OPENMP=0 FC=gfortran CC=gcc COMMON_OPT="%{optflags} -fPIC" FCOMMON_OPT="$FCOMMON -fPIC" $NMAX LIBPREFIX="libopenblasp64_" $AVX $LAPACKE INTERFACE64=1 SYMBOLSUFFIX=64_
|
|
make -C openmp64_ $TARGET USE_THREAD=1 USE_OPENMP=1 FC=gfortran CC=gcc COMMON_OPT="%{optflags} -fPIC" FCOMMON_OPT="$FCOMMON -fPIC" $NMAX LIBPREFIX="libopenblaso64_" $AVX $LAPACKE INTERFACE64=1 SYMBOLSUFFIX=64_ EXTRALIB="-fopenmp"
|
|
%endif
|
|
|
|
%install
|
|
rm -rf %{buildroot}
|
|
# Install serial library and headers
|
|
make -C serial USE_THREAD=0 PREFIX=%{buildroot} OPENBLAS_LIBRARY_DIR=%{buildroot}%{_libdir} OPENBLAS_INCLUDE_DIR=%{buildroot}%{_includedir}/%name OPENBLAS_BINARY_DIR=%{buildroot}%{_bindir} OPENBLAS_CMAKE_DIR=%{buildroot}%{_libdir}/cmake install
|
|
|
|
# Copy lapacke include files
|
|
%if %{with system_lapack} && %{lapacke}
|
|
cp -a %{_includedir}/lapacke %{buildroot}%{_includedir}/%{name}
|
|
%endif
|
|
|
|
# Fix name of libraries
|
|
%ifarch armv7hl
|
|
suffix="_armv7"
|
|
%endif
|
|
%ifarch ppc64
|
|
suffix="_power6"
|
|
%endif
|
|
%ifarch ppc64p7
|
|
suffix="_power7"
|
|
%endif
|
|
%ifarch ppc64le
|
|
suffix="_power8"
|
|
%endif
|
|
%ifarch aarch64
|
|
suffix="_armv8"
|
|
%endif
|
|
slibname=`basename %{buildroot}%{_libdir}/libopenblas${suffix}-*.so .so`
|
|
mv %{buildroot}%{_libdir}/${slibname}.a %{buildroot}%{_libdir}/lib%{name}.a
|
|
if [[ "$suffix" != "" ]]; then
|
|
sname=$(echo $slibname | sed "s|$suffix||g")
|
|
mv %{buildroot}%{_libdir}/${slibname}.so %{buildroot}%{_libdir}/${sname}.so
|
|
else
|
|
sname=${slibname}
|
|
fi
|
|
|
|
# Install the OpenMP library
|
|
olibname=`echo ${slibname} | sed "s|lib%{name}|lib%{name}o|g"`
|
|
install -D -p -m 644 openmp/${olibname}.a %{buildroot}%{_libdir}/lib%{name}o.a
|
|
if [[ "$suffix" != "" ]]; then
|
|
oname=$(echo $olibname | sed "s|$suffix||g")
|
|
else
|
|
oname=${olibname}
|
|
fi
|
|
install -D -p -m 755 openmp/${olibname}.so %{buildroot}%{_libdir}/${oname}.so
|
|
|
|
# Install the threaded library
|
|
plibname=`echo ${slibname} | sed "s|lib%{name}|lib%{name}p|g"`
|
|
install -D -p -m 644 threaded/${plibname}.a %{buildroot}%{_libdir}/lib%{name}p.a
|
|
if [[ "$suffix" != "" ]]; then
|
|
pname=$(echo $plibname | sed "s|$suffix||g")
|
|
else
|
|
pname=${plibname}
|
|
fi
|
|
install -D -p -m 755 threaded/${plibname}.so %{buildroot}%{_libdir}/${pname}.so
|
|
|
|
# Install the 64-bit interface libraries
|
|
%if %build64
|
|
slibname64=`echo ${slibname} | sed "s|lib%{name}|lib%{name}64|g"`
|
|
install -D -p -m 644 serial64/${slibname64}.a %{buildroot}%{_libdir}/lib%{name}64.a
|
|
slibname64_=`echo ${slibname} | sed "s|lib%{name}|lib%{name}64_|g"`
|
|
install -D -p -m 644 serial64_/${slibname64_}.a %{buildroot}%{_libdir}/lib%{name}64_.a
|
|
|
|
if [[ "$suffix" != "" ]]; then
|
|
sname64=$(echo ${slibname64} | sed "s|$suffix||g")
|
|
sname64_=$(echo ${slibname64_} | sed "s|$suffix||g")
|
|
else
|
|
sname64=${slibname64}
|
|
sname64_=${slibname64_}
|
|
fi
|
|
install -D -p -m 755 serial64/${slibname64}.so %{buildroot}%{_libdir}/${sname64}.so
|
|
install -D -p -m 755 serial64_/${slibname64_}.so %{buildroot}%{_libdir}/${sname64_}.so
|
|
|
|
olibname64=`echo ${slibname} | sed "s|lib%{name}|lib%{name}o64|g"`
|
|
install -D -p -m 644 openmp64/${olibname64}.a %{buildroot}%{_libdir}/lib%{name}o64.a
|
|
olibname64_=`echo ${slibname} | sed "s|lib%{name}|lib%{name}o64_|g"`
|
|
install -D -p -m 644 openmp64_/${olibname64_}.a %{buildroot}%{_libdir}/lib%{name}o64_.a
|
|
|
|
if [[ "$suffix" != "" ]]; then
|
|
oname64=$(echo ${olibname64} | sed "s|$suffix||g")
|
|
oname64_=$(echo ${olibname64_} | sed "s|$suffix||g")
|
|
else
|
|
oname64=${olibname64}
|
|
oname64_=${olibname64_}
|
|
fi
|
|
install -D -p -m 755 openmp64/${olibname64}.so %{buildroot}%{_libdir}/${oname64}.so
|
|
install -D -p -m 755 openmp64_/${olibname64_}.so %{buildroot}%{_libdir}/${oname64_}.so
|
|
|
|
plibname64=`echo ${slibname} | sed "s|lib%{name}|lib%{name}p64|g"`
|
|
install -D -p -m 644 threaded64/${plibname64}.a %{buildroot}%{_libdir}/lib%{name}p64.a
|
|
plibname64_=`echo ${slibname} | sed "s|lib%{name}|lib%{name}p64_|g"`
|
|
install -D -p -m 644 threaded64_/${plibname64_}.a %{buildroot}%{_libdir}/lib%{name}p64_.a
|
|
|
|
if [[ "$suffix" != "" ]]; then
|
|
pname64=$(echo $plibname64 | sed "s|$suffix||g")
|
|
pname64_=$(echo $plibname64_ | sed "s|$suffix||g")
|
|
else
|
|
pname64=${plibname64}
|
|
pname64_=${plibname64_}
|
|
fi
|
|
install -D -p -m 755 threaded64/${plibname64}.so %{buildroot}%{_libdir}/${pname64}.so
|
|
install -D -p -m 755 threaded64_/${plibname64_}.so %{buildroot}%{_libdir}/${pname64_}.so
|
|
%endif
|
|
|
|
# Fix symlinks
|
|
pushd %{buildroot}%{_libdir}
|
|
# Serial libraries
|
|
ln -sf ${sname}.so lib%{name}.so
|
|
ln -sf ${sname}.so lib%{name}.so.0
|
|
# OpenMP libraries
|
|
ln -sf ${oname}.so lib%{name}o.so
|
|
ln -sf ${oname}.so lib%{name}o.so.0
|
|
# Threaded libraries
|
|
ln -sf ${pname}.so lib%{name}p.so
|
|
ln -sf ${pname}.so lib%{name}p.so.0
|
|
|
|
%if %build64
|
|
# Serial libraries
|
|
ln -sf ${sname64}.so lib%{name}64.so
|
|
ln -sf ${sname64}.so lib%{name}64.so.0
|
|
ln -sf ${sname64_}.so lib%{name}64_.so
|
|
ln -sf ${sname64_}.so lib%{name}64_.so.0
|
|
# OpenMP libraries
|
|
ln -sf ${oname64}.so lib%{name}o64.so
|
|
ln -sf ${oname64}.so lib%{name}o64.so.0
|
|
ln -sf ${oname64_}.so lib%{name}o64_.so
|
|
ln -sf ${oname64_}.so lib%{name}o64_.so.0
|
|
# Threaded libraries
|
|
ln -sf ${pname64}.so lib%{name}p64.so
|
|
ln -sf ${pname64}.so lib%{name}p64.so.0
|
|
ln -sf ${pname64_}.so lib%{name}p64_.so
|
|
ln -sf ${pname64_}.so lib%{name}p64_.so.0
|
|
%endif
|
|
|
|
%if %{execstack}
|
|
# Get rid of executable stacks
|
|
for lib in %{buildroot}%{_libdir}/libopenblas*.so; do
|
|
execstack -c $lib
|
|
done
|
|
%endif
|
|
|
|
# Get rid of generated CMake config
|
|
rm -rf %{buildroot}%{_libdir}/cmake
|
|
|
|
%post -p /sbin/ldconfig
|
|
%postun -p /sbin/ldconfig
|
|
|
|
%post openmp -p /sbin/ldconfig
|
|
%postun openmp -p /sbin/ldconfig
|
|
|
|
%post threads -p /sbin/ldconfig
|
|
%postun threads -p /sbin/ldconfig
|
|
|
|
%if %build64
|
|
%post openmp64 -p /sbin/ldconfig
|
|
%postun openmp64 -p /sbin/ldconfig
|
|
%post openmp64_ -p /sbin/ldconfig
|
|
%postun openmp64_ -p /sbin/ldconfig
|
|
|
|
%post serial64 -p /sbin/ldconfig
|
|
%postun serial64 -p /sbin/ldconfig
|
|
%post serial64_ -p /sbin/ldconfig
|
|
%postun serial64_ -p /sbin/ldconfig
|
|
|
|
%post threads64 -p /sbin/ldconfig
|
|
%postun threads64 -p /sbin/ldconfig
|
|
%post threads64_ -p /sbin/ldconfig
|
|
%postun threads64_ -p /sbin/ldconfig
|
|
%endif
|
|
|
|
%clean
|
|
rm -rf %{buildroot}
|
|
|
|
%files
|
|
# DO NOT REMOVE %defattr SECTIONS!
|
|
%defattr(-,root,root,-)
|
|
%doc serial/Changelog.txt serial/GotoBLAS* serial/LICENSE
|
|
%{_libdir}/lib%{name}-*.so
|
|
%{_libdir}/lib%{name}.so.*
|
|
|
|
%files openmp
|
|
%defattr(-,root,root,-)
|
|
%{_libdir}/lib%{name}o-*.so
|
|
%{_libdir}/lib%{name}o.so.*
|
|
|
|
%files threads
|
|
%defattr(-,root,root,-)
|
|
%{_libdir}/lib%{name}p-*.so
|
|
%{_libdir}/lib%{name}p.so.*
|
|
|
|
%if %build64
|
|
%files serial64
|
|
%defattr(-,root,root,-)
|
|
%{_libdir}/lib%{name}64-*.so
|
|
%{_libdir}/lib%{name}64.so.*
|
|
|
|
%files openmp64
|
|
%defattr(-,root,root,-)
|
|
%{_libdir}/lib%{name}o64-*.so
|
|
%{_libdir}/lib%{name}o64.so.*
|
|
|
|
%files threads64
|
|
%defattr(-,root,root,-)
|
|
%{_libdir}/lib%{name}p64-*.so
|
|
%{_libdir}/lib%{name}p64.so.*
|
|
|
|
%files serial64_
|
|
%defattr(-,root,root,-)
|
|
%{_libdir}/lib%{name}64_-*.so
|
|
%{_libdir}/lib%{name}64_.so.*
|
|
|
|
%files openmp64_
|
|
%defattr(-,root,root,-)
|
|
%{_libdir}/lib%{name}o64_-*.so
|
|
%{_libdir}/lib%{name}o64_.so.*
|
|
|
|
%files threads64_
|
|
%defattr(-,root,root,-)
|
|
%{_libdir}/lib%{name}p64_-*.so
|
|
%{_libdir}/lib%{name}p64_.so.*
|
|
%endif
|
|
|
|
%files devel
|
|
%defattr(-,root,root,-)
|
|
%{_includedir}/%{name}/
|
|
%{_libdir}/lib%{name}.so
|
|
%{_libdir}/lib%{name}o.so
|
|
%{_libdir}/lib%{name}p.so
|
|
%if %build64
|
|
%{_libdir}/lib%{name}64.so
|
|
%{_libdir}/lib%{name}o64.so
|
|
%{_libdir}/lib%{name}p64.so
|
|
%{_libdir}/lib%{name}64_.so
|
|
%{_libdir}/lib%{name}o64_.so
|
|
%{_libdir}/lib%{name}p64_.so
|
|
%endif
|
|
|
|
%files static
|
|
%defattr(-,root,root,-)
|
|
%{_libdir}/lib%{name}.a
|
|
%{_libdir}/lib%{name}o.a
|
|
%{_libdir}/lib%{name}p.a
|
|
%if %build64
|
|
%{_libdir}/lib%{name}64.a
|
|
%{_libdir}/lib%{name}o64.a
|
|
%{_libdir}/lib%{name}p64.a
|
|
%{_libdir}/lib%{name}64_.a
|
|
%{_libdir}/lib%{name}o64_.a
|
|
%{_libdir}/lib%{name}p64_.a
|
|
%endif
|
|
|
|
%changelog
|
|
* Thu Sep 01 2016 Susi Lehtola <jussilehtola@fedoraproject.org> - 0.2.19-1
|
|
- Update to 0.2.19.
|
|
|
|
* Wed Aug 17 2016 Susi Lehtola <jussilehtola@fedoraproject.org> - 0.2.18-5
|
|
- Revert "minor spec cleanups" by Peter Robinson.
|
|
|
|
* Wed Jul 13 2016 Peter Robinson <pbrobinson@fedoraproject.org> 0.2.18-4
|
|
- aarch64 has execstack in Fedora
|
|
- Minor spec cleanups
|
|
|
|
* Wed Jul 13 2016 Susi Lehtola <jussilehtola@fedoraproject.org> - 0.2.18-3
|
|
- Enable ppc64 and ppc64p7 architectures
|
|
based on Dan Horák's patch (BZ #1356189).
|
|
- Supply proper make flags to the tests.
|
|
|
|
* Tue Jul 12 2016 Jeff Bastian <jbastian@redhat.com> - 0.2.18-2
|
|
- update for aarch64
|
|
|
|
* Tue Apr 12 2016 Susi Lehtola <jussilehtola@fedoraproject.org> - 0.2.18-1
|
|
- Update to 0.2.18.
|
|
|
|
* Wed Apr 6 2016 Orion Poplawski <orion@cora.nwra.com> - 0.2.17-1
|
|
- Update to 0.2.17
|
|
|
|
* Fri Mar 18 2016 Susi Lehtola <jussilehtola@fedoraproject.org> - 0.2.16-3
|
|
- Include deprecated LAPACK functions.
|
|
|
|
* Wed Mar 16 2016 Susi Lehtola <jussilehtola@fedoraproject.org> - 0.2.16-2
|
|
- Fix library suffix on ppc64le.
|
|
|
|
* Tue Mar 15 2016 Susi Lehtola <jussilehtola@fedoraproject.org> - 0.2.16-1
|
|
- Update to 0.2.16.
|
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.15-6
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
* Tue Jan 12 2016 Susi Lehtola <jussilehtola@fedoraproject.org> - 0.2.15-5
|
|
- Need to use -frecursive to make LAPACK thread safe.
|
|
|
|
* Tue Jan 12 2016 Susi Lehtola <jussilehtola@fedoraproject.org> - 0.2.15-4
|
|
- Add version to bundled lapack provide.
|
|
|
|
* Mon Jan 11 2016 Orion Poplawski <orion@cora.nwra.com> - 0.2.15-3
|
|
- Allow conditional build with or without system lapack, default to without
|
|
|
|
* Tue Dec 01 2015 Susi Lehtola <jussilehtola@fedoraproject.org> - 0.2.15-2
|
|
- Enable armv7hl and ppc64le architectures.
|
|
- Build versions of the 64-bit libraries with an additional suffix
|
|
(BZ #1287541).
|
|
|
|
* Wed Oct 28 2015 Susi Lehtola <jussilehtola@fedoraproject.org> - 0.2.15-1
|
|
- Update to 0.2.15.
|
|
|
|
* Tue Aug 04 2015 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 0.2.14-4
|
|
- Use new execstack (#1247795)
|
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.14-3
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
* Sun May 3 2015 Peter Robinson <pbrobinson@fedoraproject.org> 0.2.14-2
|
|
- Run ldconfig on 64 builds too
|
|
|
|
* Wed Mar 25 2015 Susi Lehtola <jussilehtola@fedoraproject.org> - 0.2.14-1
|
|
- Update to 0.2.14.
|
|
|
|
* Fri Dec 19 2014 Susi Lehtola <jussilehtola@fedoraproject.org> - 0.2.13-2
|
|
- Bump spec due to LAPACK rebuild.
|
|
|
|
* Fri Dec 05 2014 Susi Lehtola <jussilehtola@fedoraproject.org> - 0.2.13-1
|
|
- Update to 0.2.13.
|
|
|
|
* Mon Oct 13 2014 Susi Lehtola <jussilehtola@fedoraproject.org> - 0.2.12-1
|
|
- Update to 0.2.12.
|
|
|
|
* Mon Aug 18 2014 Susi Lehtola <jussilehtola@fedoraproject.org> - 0.2.11-1
|
|
- Update to 0.2.11.
|
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.10-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
* Wed Jul 16 2014 Susi Lehtola <jussilehtola@fedoraproject.org> - 0.2.10-1
|
|
- Update to 0.2.10.
|
|
|
|
* Wed Jun 11 2014 Susi Lehtola <jussilehtola@fedoraproject.org> - 0.2.9-1
|
|
- Increase maximum amount of cores from 32 to 128.
|
|
- Add 64-bit interface support. (BZ #1088256)
|
|
- Update to 0.2.9. (BZ #1043083)
|
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.8-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
* Wed Aug 07 2013 Susi Lehtola <jussilehtola@fedoraproject.org> - 0.2.8-1
|
|
- Update to 0.2.8.
|
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.7-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
* Tue Jul 23 2013 Susi Lehtola <jussilehtola@fedoraproject.org> - 0.2.7-1
|
|
- Update to 0.2.7.
|
|
- Use OpenBLAS versions of LAPACK functions, as they seem to be
|
|
working now.
|
|
|
|
* Mon Jul 08 2013 Susi Lehtola <jussilehtola@fedoraproject.org> - 0.2.5-10
|
|
- Due to long standing bug, replace all OpenBLAS LAPACK functions with
|
|
generic ones, so that package can finally be released in stable.
|
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.5-9
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
* Tue Jan 15 2013 Susi Lehtola <jussilehtola@fedoraproject.org> - 0.2.5-8
|
|
- Added LAPACKE include files.
|
|
|
|
* Mon Jan 14 2013 Susi Lehtola <jussilehtola@fedoraproject.org> - 0.2.5-7
|
|
- Fix build on RHEL5 and ppc architecture.
|
|
|
|
* Mon Dec 24 2012 Susi Lehtola <jussilehtola@fedoraproject.org> - 0.2.5-6
|
|
- Review fixes.
|
|
|
|
* Fri Dec 21 2012 Susi Lehtola <jussilehtola@fedoraproject.org> - 0.2.5-5
|
|
- Disable LAPACKE support on distributions where it is not available due to
|
|
a too old version of lapack.
|
|
|
|
* Mon Dec 17 2012 Susi Lehtola <jussilehtola@fedoraproject.org> - 0.2.5-4
|
|
- Don't use reference LAPACK functions that have optimized implementation.
|
|
|
|
* Wed Dec 12 2012 Susi Lehtola <jussilehtola@fedoraproject.org> - 0.2.5-3
|
|
- Use system version of LAPACK.
|
|
|
|
* Mon Nov 26 2012 Susi Lehtola <jussilehtola@fedoraproject.org> - 0.2.5-2
|
|
- Fixed 32-bit build, and build on EPEL 5.
|
|
|
|
* Mon Nov 26 2012 Susi Lehtola <jussilehtola@fedoraproject.org> - 0.2.5-1
|
|
- Update to 0.2.5.
|
|
|
|
* Thu Oct 06 2011 Jussi Lehtola <jussilehtola@fedoraproject.org> - 0.1-2.alpha2.4
|
|
- Added documentation.
|
|
|
|
* Sun Sep 18 2011 Jussi Lehtola <jussilehtola@fedoraproject.org> - 0.1-1.alpha2.4
|
|
- First release.
|