-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to get known which optimisations are used ? #7
Comments
See installation section. By default SSE4 is used.
Could you show the code? |
You can ensure that SIMD version is installed: $ python -c "from PIL import Image; print(Image.PILLOW_VERSION)"
3.2.0.post3 If |
It will be nice if I have Python API to get actual optimisation level. i.e. |
This does not work with 7.0.0.post3, but might work with some future versions, because of the constant depreciation iterations:
This should work: $ python -c "from PIL import Image; print(Image.__version__)" |
I just executed command
pip3 install Pillow-SIMD
.Now, my thumbnailer works right.
Question: How I can know which SIMD operations sets are really used ?
I did not notice speedup...
The text was updated successfully, but these errors were encountered: