Skip to content

Commit 97b5a27

Browse files
committed
MNT: respond to review comments
1 parent 86c5711 commit 97b5a27

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

doc/release/upcoming_changes/26750.improvement.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
`lapack_lite` is thread safe
2-
----------------------------
1+
`lapack_lite` is now thread safe
2+
--------------------------------
33

4-
NumPy provides a minimal CPU-only version of LAPACK named ``lapack_lite`` that can
5-
be used if no BLAS/LAPACK system is detected at build time.
4+
NumPy provides a minimal low-performance version of LAPACK named ``lapack_lite``
5+
that can be used if no BLAS/LAPACK system is detected at build time.
66

77
Until now, ``lapack_lite`` was not thread safe. Single-threaded use cases did
88
not hit any issues, but running linear algebra operations in multiple threads

numpy/_core/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ cdata.set('NPY_VISIBILITY_HIDDEN', visibility_hidden)
508508

509509
# if not set, we're using lapack_lite
510510
if have_lapack
511-
cdata.set10('HAVE_EXTERNAL_LAPACK', have_blas)
511+
cdata.set10('HAVE_EXTERNAL_LAPACK', have_lapack)
512512
endif
513513

514514
config_h = configure_file(

0 commit comments

Comments
 (0)