Speeding Up Python - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T05:02:35Zhttp://stackoverflow.com/feeds/question/172720http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/172720/speeding-up-python16Speeding Up Pythonakdom2008-10-05T21:46:00Z2009-05-14T15:15:48Z
<p>This is really two questions, but they are so similar, and to keep it simple, I figured I'd just roll them together:</p>
<ul>
<li><p><strong>Firstly</strong>: Given an established python project, what are some decent ways to speed it up beyond just plain in-code optimization?</p></li>
<li><p><strong>Secondly</strong>: When writing a program from scratch in python, what are some good ways to greatly improve performance?</p></li>
</ul>
<p>For the first question, imagine you are handed a decently written project and you need to improve performance, but you can't seem to get much of a gain through refactoring/optimization. What would you do to speed it up in this case short of rewriting it in something like C?</p>
http://stackoverflow.com/questions/172720/speeding-up-python/172726#17272615Answer by ΤΖΩΤΖΙΟΥ for Speeding Up PythonΤΖΩΤΖΙΟΥ2008-10-05T21:51:10Z2008-10-05T21:51:10Z<p>First thing that comes to mind: <a href="http://psyco.sourceforge.net/" rel="nofollow">psyco</a>. It runs only on x86, for the time being.</p>
<p>Then, <a href="http://code.activestate.com/recipes/277940/" rel="nofollow">constant binding</a>. That is, make all global references (and <em>global.attr</em>, <em>global.attr.attr</em>…) be local names inside of functions and methods. This isn't always successful, but in general it works. It can be done by hand, but obviously is tedious.</p>
<p>You said apart from in-code optimization, so I won't delve into this, but keep your mind open for typical misteaks (<code>for i in range(10000000)</code> comes to mind) that people do.</p>
http://stackoverflow.com/questions/172720/speeding-up-python/172734#1727344Answer by Steve Moyer for Speeding Up PythonSteve Moyer2008-10-05T21:59:06Z2008-10-05T22:36:07Z<p>This won't necessarily speed up any of your code, but is critical knowledge when programming in Python if you want to avoid slowing your code down. The "Global Interpreter Lock" (GIL), has the potential to drastically reduce the speed of your multi-threaded program if its behavior is not understood (yes, this bit me ... I had a nice 4 processor machine that wouldn't use more than 1.2 processors at a time). There's an introductory article with some links to get you started at <a href="http://smoothspan.wordpress.com/2007/09/14/guido-is-right-to-leave-the-gil-in-python-not-for-multicore-but-for-utility-computing/" rel="nofollow">SmoothSpan</a>.</p>
http://stackoverflow.com/questions/172720/speeding-up-python/172737#1727374Answer by Vicent Marti for Speeding Up PythonVicent Marti2008-10-05T22:02:52Z2008-10-05T22:02:52Z<p>Run your app through the Python profiler.
Find a serious bottleneck.
Rewrite that bottleneck in C.
Repeat.</p>
http://stackoverflow.com/questions/172720/speeding-up-python/172740#1727407Answer by hacama for Speeding Up Pythonhacama2008-10-05T22:03:44Z2008-10-05T22:03:44Z<p>Cython and pyrex can be used to generate c code using a python-like syntax. Psyco is also fantastic for appropriate projects (sometimes you'll not notice much speed boost, sometimes it'll be as much as 50x as fast).
I still reckon the best way is to profile your code (cProfile, etc.) and then just code the bottlenecks as c functions for python.</p>
http://stackoverflow.com/questions/172720/speeding-up-python/172744#17274416Answer by John Millikin for Speeding Up PythonJohn Millikin2008-10-05T22:09:25Z2008-10-05T22:09:25Z<p>The usual suspects -- profile it, find the most expensive line, figure out what it's doing, fix it. If you haven't done much profiling before, there could be some big fat quadratic loops or string duplication hiding behind otherwise innocuous-looking expressions.</p>
<p>In Python, two of the most common causes I've found for non-obvious slowdown are string concatenation and generators. Since Python's strings are immutable, doing something like this:</p>
<pre><code>result = u""
for item in my_list:
result += unicode (item)
</code></pre>
<p>will copy the <em>entire</em> string twice per iteration. This has been well-covered, and the solution is to use <code>"".join</code>:</p>
<pre><code>result = "".join (unicode (item) for item in my_list)
</code></pre>
<p>Generators are another culprit. They're very easy to use and can simplify some tasks enormously, but a poorly-applied generator will be much slower than simply appending items to a list and returning the list.</p>
<p>Finally, <strong>don't be afraid to rewrite bits in C!</strong> Python, as a dynamic high-level language, is simply not capable of matching C's speed. If there's one function that you can't optimize any more in Python, consider extracting it to an extension module.</p>
<p>My favorite technique for this is to maintain both Python and C versions of a module. The Python version is written to be as clear and obvious as possible -- any bugs should be easy to diagnose and fix. Write your tests against this module. Then write the C version, and test it. Its behavior should in all cases equal that of the Python implementation -- if they differ, it should be very easy to figure out which is wrong and correct the problem.</p>
http://stackoverflow.com/questions/172720/speeding-up-python/172766#1727663Answer by simon for Speeding Up Pythonsimon2008-10-05T22:27:08Z2008-10-05T22:27:08Z<p>People have given some good advice, but you have to be aware that when high performance is needed, the python model is: punt to c. Efforts like psyco may in the future help a bit, but python just isn't a fast language, and it isn't designed to be. Very few languages have the ability to do the dynamic stuff really well and still generate very fast code; at least for the forseeable future (and some of the design works against fast compilation) that will be the case.</p>
<p>So, if you really find yourself in this bind, your best bet will be to isolate the parts of your system that are unacceptable slow in (good) python, and design around the idea that you'll rewrite those bits in C. Sorry. Good design can help make this less painful. Prototype it in python first though, then you've easily got a sanity check on your c, as well.</p>
<p>This works well enough for things like numpy, after all. I can't emphasize enough how much good design will help you though. If you just iteratively poke at your python bits and replace the slowest ones with C, you may end up with a big mess. Think about exactly where the C bits are needed, and how they can be minimized and encapsulated sensibly.</p>
http://stackoverflow.com/questions/172720/speeding-up-python/172782#1727822Answer by Walter for Speeding Up PythonWalter2008-10-05T22:45:13Z2008-10-05T22:45:13Z<p>Just a note on using psyco: In some cases it can actually produce slower run-times. Especially when trying to use psyco with code that was written in C. I can't remember the the article I read this, but the <code>map()</code> and <code>reduce()</code> functions were mentioned specifically. Luckily you can tell psyco not to handle specified functions and/or modules.</p>
http://stackoverflow.com/questions/172720/speeding-up-python/172784#17278416Answer by S.Lott for Speeding Up PythonS.Lott2008-10-05T22:46:37Z2008-10-05T22:46:37Z<p>Regarding "Secondly: When writing a program from scratch in python, what are some good ways to greatly improve performance?"</p>
<p>Remember the Jackson rules of optimization: </p>
<ul>
<li>Rule 1: Don't do it.</li>
<li>Rule 2 (for experts only): Don't do it yet.</li>
</ul>
<p>And the Knuth rule:</p>
<ul>
<li>"Premature optimization is the root of all evil."</li>
</ul>
<p>The more useful rules are in the <a href="http://www.cs.cmu.edu/~jch/java/rules.html" rel="nofollow">General Rules for Optimization</a>.</p>
<ol>
<li><p>Don't optimize as you go. First get it right. Then get it fast. Optimizing a wrong program is still wrong.</p></li>
<li><p>Remember the 80/20 rule.</p></li>
<li><p>Always run "before" and "after" benchmarks. Otherwise, you won't know if you've found the 80%.</p></li>
<li><p>Use the right algorithms and data structures. This rule should be first. Nothing matters as much as algorithm and data structure.</p></li>
</ol>
<p><strong>Bottom Line</strong></p>
<p>You can't prevent or avoid the "optimize this program" effort. It's part of the job. You have to plan for it and do it carefully, just like the design, code and test activities.</p>
http://stackoverflow.com/questions/172720/speeding-up-python/172794#1727945Answer by torial for Speeding Up Pythontorial2008-10-05T22:54:57Z2008-10-05T22:54:57Z<p>I'm surprised no one mentioned ShedSkin: <a href="http://code.google.com/p/shedskin/" rel="nofollow">http://code.google.com/p/shedskin/</a>, it automagically converts your python program to C++ and in some benchmarks yields better improvements than psyco in speed. </p>
<p>Plus anecdotal stories on the simplicity: <a href="http://pyinsci.blogspot.com/2006/12/trying-out-latest-release-of-shedskin.html" rel="nofollow">http://pyinsci.blogspot.com/2006/12/trying-out-latest-release-of-shedskin.html</a></p>
<p>There are limitations though, please see: <a href="http://tinyurl.com/shedskin-limitations" rel="nofollow">http://tinyurl.com/shedskin-limitations</a></p>
http://stackoverflow.com/questions/172720/speeding-up-python/172991#1729912Answer by Claudiu for Speeding Up PythonClaudiu2008-10-06T01:38:57Z2008-10-06T01:38:57Z<p>This is the procedure that I try to follow:<br></p>
<ul>
<li> import psyco; psyco.full()
<li> If it's not fast enough, run the code through a profiler, see where the bottlenecks are. (DISABLE psyco for this step!)
<li> Try to do things such as other people have mentioned to get the code at those bottlenecks as fast as possible.
<ul><li>Stuff like [str(x) for x in l] or [x.strip() for x in l] is much, much slower than map(str, x) or map(str.strip, x). </ul>
<li> After this, if I still need more speed, it's actually really easy to get PyRex up and running. I first copy a section of python code, put it directly in the pyrex code, and see what happens. Then I twiddle with it until it gets faster and faster.
</ul>
http://stackoverflow.com/questions/172720/speeding-up-python/173055#17305510Answer by jlouis for Speeding Up Pythonjlouis2008-10-06T02:28:52Z2008-10-06T02:28:52Z<p>Rather than just punting to C, I'd suggest:</p>
<p>Make your code count. Do more with fewer executions of lines:</p>
<ul>
<li>Change the algorithm to a faster one. It doesn't need to be fancy to be faster in many cases.</li>
<li>Use python primitives that happens to be written in C. Some things will force an interpreter dispatch where some wont. The latter is preferable</li>
<li>Beware of code that first constructs a big data structure followed by its consumation. Think the difference between range and xrange. In general it is often worth thinking about memory usage of the program. Using generators can sometimes bring O(n) memory use down to O(1).</li>
<li>Python is generally non-optimizing. Hoist invariant code out of loops, eliminate common subexpressions where possible in tight loops.</li>
<li>If something is expensive, then precompute or memoize it. Regular expressions can be compiled for instance.</li>
<li>Need to crunch numbers? You might want to check <code>numpy</code> out.</li>
<li>Many python programs are slow because they are bound by disk I/O or database access. Make sure you have something worthwhile to do while you wait on the data to arrive rather than just blocking. A weapon could be something like the <code>Twisted</code> framework.</li>
<li>Note that many crucial data-processing libraries have C-versions, be it XML, JSON or whatnot. They are often considerably faster than the Python interpreter.</li>
</ul>
<p>If all of the above fails for profiled and measured code, then begin thinking about the C-rewrite path.</p>
http://stackoverflow.com/questions/172720/speeding-up-python/175283#1752831Answer by Peter Shinners for Speeding Up PythonPeter Shinners2008-10-06T17:24:16Z2008-10-06T17:24:16Z<p>If using psyco, I'd recommend <code>psyco.profile()</code> instead of <code>psyco.full()</code>. For a larger project it will be smarter about the functions that got optimized and use a ton less memory.</p>
<p>I would also recommend looking at iterators and generators. If your application is using large data sets this will save you many copies of containers.</p>
http://stackoverflow.com/questions/172720/speeding-up-python/247612#2476122Answer by sep332 for Speeding Up Pythonsep3322008-10-29T17:06:02Z2008-10-29T17:06:02Z<p>It's often possible to achieve near-C speeds (close enough for any project using Python in the first place!) by replacing explicit algorithms written out longhand in Python with an implicit algorithm using a built-in Python call. This works because most Python built-ins are written in C anyway. Well, in CPython of course ;-) <a href="http://www.python.org/doc/essays/list2str.html" rel="nofollow">http://www.python.org/doc/essays/list2str.html</a> </p>
http://stackoverflow.com/questions/172720/speeding-up-python/247622#247622-3Answer by Jonathan for Speeding Up PythonJonathan2008-10-29T17:09:59Z2008-10-29T17:09:59Z<p>The fact that you are concerned about performance suggests that maybe Python wasn't the best tool for the job. Python is slow.</p>
http://stackoverflow.com/questions/172720/speeding-up-python/247641#2476412Answer by Jason Baker for Speeding Up PythonJason Baker2008-10-29T17:16:39Z2008-10-29T17:16:39Z<p>The canonical reference to how to improve Python code is here: <a href="http://wiki.python.org/moin/PythonSpeed/PerformanceTips" rel="nofollow">PerformanceTips</a>. I'd recommend against optimizing in C unless you really need to though. For most applications, you can get the performance you need by following the rules posted in that link.</p>
http://stackoverflow.com/questions/172720/speeding-up-python/364373#3643733Answer by ionelmc for Speeding Up Pythonionelmc2008-12-12T22:27:19Z2008-12-12T22:27:19Z<p>I hope you've read: <a href="http://wiki.python.org/moin/PythonSpeed/PerformanceTips" rel="nofollow">http://wiki.python.org/moin/PythonSpeed/PerformanceTips</a></p>
<p>Resuming what's already there are usualy 3 principles:</p>
<ul>
<li>write code that gets transformed in better bytecode, like, use locals, avoid unnecessary lookups/calls, use idiomatic constructs (if there's natural syntax for what you want, use it - usually faster. eg: don't do: "for key in some_dict.keys()", do "for key in some_dict")</li>
<li>whatever is written in C is considerably faster, abuse whatever C functions/modules you have available</li>
<li>when in doubt, import timeit, profile</li>
</ul>
http://stackoverflow.com/questions/172720/speeding-up-python/863670#8636701Answer by Davide for Speeding Up PythonDavide2009-05-14T14:32:27Z2009-05-14T15:15:48Z<p>Besides the (great) <a href="http://psyco.sourceforge.net/" rel="nofollow">psyco</a> and the (nice) <a href="http://code.google.com/p/shedskin/" rel="nofollow">shedskin</a>, I'd recommend trying <a href="http://www.cython.org/" rel="nofollow">cython</a> a great fork of <a href="http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/" rel="nofollow">pyrex</a>. </p>
<p>Or, if you are not in a hurry, I recommend to just wait. Newer python virtual machines are coming, and <a href="http://code.google.com/p/unladen-swallow/" rel="nofollow">unladen-swallow</a> will find its way into the mainstream.</p>