blob: 23f0296ae795bc2ee880bdf11620a1b965a16b3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
Negation of user-defined BLAS/LAPACK detection order
----------------------------------------------------
`~numpy.distutils` allows negation of libraries when determining BLAS/LAPACK
libraries.
This may be used to remove an item from the library resolution phase, i.e.
to disallow NetLIB libraries one could do:
.. code:: bash
NPY_BLAS_ORDER='^blas' NPY_LAPACK_ORDER='^lapack' python setup.py build
which will use any of the accelerated libraries instead.
|