From 0eae16a7e9c91501e0586f8b548134fe66aa2708 Mon Sep 17 00:00:00 2001 From: anish Date: Thu, 14 Sep 2023 15:56:52 +0200 Subject: [PATCH] removed install openblas section from build --- src/main/cpp/build.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/cpp/build.sh b/src/main/cpp/build.sh index 8f108b30e71..04e65cdc4d4 100755 --- a/src/main/cpp/build.sh +++ b/src/main/cpp/build.sh @@ -83,12 +83,12 @@ if ! ldconfig -p | grep -q libmkl_rt; then fi # Check if OpenBLAS is installed -if ! ldconfig -p | grep -q libopenblas; then - echo "OpenBLAS not found. Installing OpenBLAS..." +#if ! ldconfig -p | grep -q libopenblas; then +# echo "OpenBLAS not found. Installing OpenBLAS..." - apt-get update - apt-get install libopenblas-dev -y -fi +# apt-get update +# apt-get install libopenblas-dev -y +#fi # configure and compile INTEL MKL cmake . -B INTEL -DUSE_INTEL_MKL=ON -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER=g++ -DCMAKE_CXX_FLAGS="-DUSE_GNU_THREADING -m64"