Skip to content

Commit

Permalink
Major update to add new features to LDMatrix data structure + suppo…
Browse files Browse the repository at this point in the history
…rt for `LDLinearOperator`.
  • Loading branch information
shz9 committed Jul 30, 2024
1 parent 7c3f4d9 commit 66a2fc6
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,12 @@ def find_blas_libraries():

# STEP 3: Get all pkg-config packages and filter to
# those that have "blas" in the name.
blas_packages = [pkg for pkg in pkgconfig.list_all()
if "blas" in pkg]
# NOTE: This step may not work on some systems...
try:
blas_packages = [pkg for pkg in pkgconfig.list_all()
if "blas" in pkg]
except FileNotFoundError:
blas_packages = []

# First check: Make sure that compiler flags are defined and a
# valid cblas.h header file exists in the include directory:
Expand Down

0 comments on commit 66a2fc6

Please sign in to comment.