Skip to content
This repository has been archived by the owner on Nov 8, 2022. It is now read-only.

Commit

Permalink
More WIP on openblas stuff.
Browse files Browse the repository at this point in the history
  • Loading branch information
lkuper committed Jun 14, 2017
1 parent 4a38f89 commit 4728996
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions deps/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,8 @@ do
# We first check for MKL; failing that, we check for OpenBLAS.
if echo "$lib" | grep -q "/mkl/"; then
MKL_LIB=$lib
elif [ $PA_USE_OPENBLAS -eq "1" ]; then
if echo "$lib" | grep -q "OpenBLAS\|openblas"; then
OPENBLAS_LIB=$lib
fi
elif echo "$lib" | grep -q "OpenBLAS\|openblas"; then
OPENBLAS_LIB=$lib
fi
done

Expand Down Expand Up @@ -123,6 +121,8 @@ if [ -z "$OPENBLAS_COMPILE" ]; then
echo "OpenBLAS found"
# At this point, hopefully OPENBLAS_LIB already points to the
# correct directory for the shared library if needed.
else
unset OPENBLAS_LIB
fi

#echo "out" $SYS_BLAS $MKL_LIB $OPENBLAS_LIB
Expand Down

0 comments on commit 4728996

Please sign in to comment.