- lapack package 선형대수학 라이브러리
- 인텔 intel mkl (math kernel Library)
- Atlas linear algebra.. 아틀라스가 가장 빠름. 매우 큰 array, 시간이 많이 걸리는 연산은 numpy에 atlas를 연결시키는 게 좋음
- numpy와 Atlas를 연결시키고 싶다면?
how to link atlas to numpy - Google 검색
Assuming you're running some flavour of linux, here's one way you could do it: Find out what BLAS library numpy is currently linked against using ldd . Install ATLAS/MKL/OpenBLAS if you haven't already. Use update-alternatives to create a symlink to the ne
www.google.com
https://stackoverflow.com/questions/21671040/link-atlas-mkl-to-an-installed-numpy
Link ATLAS/MKL to an installed Numpy
TL;DR how to link ATLAS/MKL to existing Numpy without rebuilding. I have used Numpy to calculate with the large matrix and I found that it is very slow because Numpy only use 1 core to do calculat...
stackoverflow.com