You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
NumPy can use the BLAS library to do some of its operations.
On Debian 9, if you install numpy globally via apt-get, libblas3 will also be installed.
There are 2 other open source BLAS implementations which are generally more optimized for speed. https://wiki.debian.org/DebianScience/LinearAlgebraLibraries
According to my testing you can get a nice speedup when using an accelerated BLAS lib with ocropy.
The text was updated successfully, but these errors were encountered:
$ python2 -c 'import numpy; numpy.show_config()'
lapack_opt_info:
extra_link_args = ['-Wl,-framework', '-Wl,Accelerate']
extra_compile_args = ['-msse3']
define_macros = [('NO_ATLAS_INFO', 3), ('HAVE_CBLAS', None)]
openblas_lapack_info:
NOT AVAILABLE
atlas_3_10_blas_threads_info:
NOT AVAILABLE
atlas_threads_info:
NOT AVAILABLE
atlas_3_10_threads_info:
NOT AVAILABLE
atlas_blas_info:
NOT AVAILABLE
atlas_3_10_blas_info:
NOT AVAILABLE
atlas_blas_threads_info:
NOT AVAILABLE
openblas_info:
NOT AVAILABLE
blas_mkl_info:
NOT AVAILABLE
blas_opt_info:
extra_link_args = ['-Wl,-framework', '-Wl,Accelerate']
extra_compile_args = ['-msse3', '-I/System/Library/Frameworks/vecLib.framework/Headers']
define_macros = [('NO_ATLAS_INFO', 3), ('HAVE_CBLAS', None)]
blis_info:
NOT AVAILABLE
atlas_info:
NOT AVAILABLE
atlas_3_10_info:
NOT AVAILABLE
lapack_mkl_info:
NOT AVAILABLE
NumPy can use the BLAS library to do some of its operations.
On Debian 9, if you install numpy globally via apt-get, libblas3 will also be installed.
There are 2 other open source BLAS implementations which are generally more optimized for speed.
https://wiki.debian.org/DebianScience/LinearAlgebraLibraries
According to my testing you can get a nice speedup when using an accelerated BLAS lib with ocropy.
The text was updated successfully, but these errors were encountered: