Re: [Python-Dev] Python automatic optimization

2015-07-23 Thread Stefan Behnel
Andrew Steinberg via Python-Dev schrieb am 23.07.2015 um 21:04: > Hello everybody, I am using Python 2.7 as a backbone for some > mathematical simulations. I recently discovered a tool called AutoFDO > and I tried compiling my own Python version, but I did not manage to get > it working. My questio

Re: [Python-Dev] Python automatic optimization

2015-07-23 Thread Maciej Fijalkowski
As far as I can tell, the feedback directed optimizations don't give much speedup on Python. There is a variety of tools for help: cython, numba, pypy, numpy etc. if you care about performance of mathematical operations. On Thu, Jul 23, 2015 at 9:04 PM, Andrew Steinberg via Python-Dev wrote: > He

[Python-Dev] Python automatic optimization

2015-07-23 Thread Andrew Steinberg via Python-Dev
Hello everybody, I am using Python 2.7 as a backbone for some mathematical simulations. I recently discovered a tool called AutoFDO and I tried compiling my own Python version, but I did not manage to get it working. My question is, will sometime in the future Python include this tool? Thank you