From 1ba553437f8a88d3611945d6c03f0a23976ed288 Mon Sep 17 00:00:00 2001 From: treitmaier Date: Wed, 25 Jun 2025 09:26:11 +0100 Subject: [PATCH] Update OpenBLAS repo OpenBLAS repo changed from https://github.com/xianyi/OpenBLAS to https://github.com/OpenMathLib/OpenBLAS --- tools/extras/install_openblas.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/extras/install_openblas.sh b/tools/extras/install_openblas.sh index 12d6b4fbc1b..7d0cf1784eb 100755 --- a/tools/extras/install_openblas.sh +++ b/tools/extras/install_openblas.sh @@ -19,18 +19,18 @@ fi tarball=OpenBLAS-$OPENBLAS_VERSION.tar.gz -rm -rf xianyi-OpenBLAS-* OpenBLAS OpenBLAS-*.tar.gz +rm -rf OpenMathLib-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"])') + url=$($WGET -qO- "https://api.github.com/repos/OpenMathLib/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 +mv OpenMathLib-OpenBLAS-* OpenBLAS make PREFIX=$(pwd)/OpenBLAS/install USE_LOCKING=1 USE_THREAD=0 -C OpenBLAS all install if [ $? -eq 0 ]; then