Skip to content

Commit

Permalink
scalapack fix
Browse files Browse the repository at this point in the history
  • Loading branch information
edoapra committed Jan 24, 2025
1 parent 83e3aa4 commit 19377ad
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/libext/scalapack/build_scalapa.sh
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,11 @@ fi
if [[ $(echo "$LAPACK_LIB" |awk '/lapack/ {print "Y"; exit}' ) == "Y" ]]; then
export USE_DCOMBSSQ=1
fi
if [[ $(echo ""$LAPACK_LIB |awk '/lfjlapack/ {print "Y"; exit}' ) == "Y" ]]; then
if [[ $(echo "$LAPACK_LIB" |awk '/lfjlapack/ {print "Y"; exit}' ) == "Y" ]]; then
export USE_DCOMBSSQ=1
fi
# ubuntu 24.04 openblas pkg does not contain dcombossq
if [[ $(echo "$LAPACK_LIB" |awk '/openblas/ {print "Y"; exit}' ) == "Y" ]]; then
export USE_DCOMBSSQ=1
fi
if [[ -z "$USE_DCOMBSSQ" ]]; then
Expand Down

0 comments on commit 19377ad

Please sign in to comment.