Reputation: 11
I want to operate(sum) two 2d-vectors(NumPy.array) in python 3. I know I can use functions in NumPy, but I still want to know is there any package to support SSE instruction opreation in python 3? or any existing package with high efficiency to do that?
Upvotes: 0
Views: 407
Reputation: 180155
There's numpy-mkl
which is Numpy compiled against Intel's Math Kernel Library.
Upvotes: 1