You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
OPENBLAS_VERSION=0.3.10
|
|
|
|
|
|
|
|
WGET=${WGET:-wget}
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
if ! command -v gfortran 2>/dev/null; then
|
|
|
|
echo "$0: gfortran is not installed. Please install it, e.g. by:"
|
|
|
|
echo " apt-get install gfortran"
|
|
|
|
echo "(if on Debian or Ubuntu), or:"
|
|
|
|
echo " yum install gcc-gfortran"
|
|
|
|
echo "(if on RedHat/CentOS). On a Mac, if brew is installed, it's:"
|
|
|
|
echo " brew install gfortran"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
tarball=OpenBLAS-$OPENBLAS_VERSION.tar.gz
|
|
|
|
|
|
|
|
rm -rf xianyi-OpenBLAS-* OpenBLAS OpenBLAS-*.tar.gz
|
|
|
|
|
|
|
|
if [ -d "$DOWNLOAD_DIR" ]; then
|
|
|
|
cp -p "$DOWNLOAD_DIR/$tarball" .
|
|
|
|
else
|
|
|
|
url=$($WGET -qO- "https://api.github.com/repos/xianyi/OpenBLAS/releases/tags/v${OPENBLAS_VERSION}" | python -c 'import sys,json;print(json.load(sys.stdin)["tarball_url"])')
|
|
|
|
test -n "$url"
|
|
|
|
$WGET -t3 -nv -O $tarball "$url"
|
|
|
|
fi
|
|
|
|
|
|
|
|
tar xzf $tarball
|
|
|
|
mv xianyi-OpenBLAS-* OpenBLAS
|
|
|
|
|
|
|
|
make PREFIX=$(pwd)/OpenBLAS/install USE_LOCKING=1 USE_THREAD=0 -C OpenBLAS all install
|
|
|
|
if [ $? -eq 0 ]; then
|
|
|
|
echo "OpenBLAS is installed successfully."
|
|
|
|
rm $tarball
|
|
|
|
fi
|