<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Create a fast C Python extension with Cython tutorial</title>
	<atom:link href="http://slowchop.com/2008/05/04/cython-getting-started-and-optimisation-tutorial/feed/" rel="self" type="application/rss+xml" />
	<link>http://slowchop.com/2008/05/04/cython-getting-started-and-optimisation-tutorial/</link>
	<description></description>
	<pubDate>Wed, 03 Dec 2008 07:10:46 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
		<item>
		<title>By: Cython: Yet another Python optimizer &#171; Rudimentary Art of Programming &#38; Development</title>
		<link>http://slowchop.com/2008/05/04/cython-getting-started-and-optimisation-tutorial/#comment-1266</link>
		<dc:creator>Cython: Yet another Python optimizer &#171; Rudimentary Art of Programming &#38; Development</dc:creator>
		<pubDate>Sun, 02 Nov 2008 22:19:17 +0000</pubDate>
		<guid isPermaLink="false">http://slowchop.com/2008/05/04/cython-getting-started-and-optimisation-tutorial/#comment-1266</guid>
		<description>[...] How to install Cython, then use it to optimize Python function that calculates Primes [...]</description>
		<content:encoded><![CDATA[<p>[...] How to install Cython, then use it to optimize Python function that calculates Primes [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cython: Yet another Python optimizerIns &#171; Rudimentary Art of Programming &#38; Development</title>
		<link>http://slowchop.com/2008/05/04/cython-getting-started-and-optimisation-tutorial/#comment-1265</link>
		<dc:creator>Cython: Yet another Python optimizerIns &#171; Rudimentary Art of Programming &#38; Development</dc:creator>
		<pubDate>Sun, 02 Nov 2008 22:18:24 +0000</pubDate>
		<guid isPermaLink="false">http://slowchop.com/2008/05/04/cython-getting-started-and-optimisation-tutorial/#comment-1265</guid>
		<description>[...] How to install Cython, then use it to optimize Python function that calculates Primes [...]</description>
		<content:encoded><![CDATA[<p>[...] How to install Cython, then use it to optimize Python function that calculates Primes [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gerald Kaszuba</title>
		<link>http://slowchop.com/2008/05/04/cython-getting-started-and-optimisation-tutorial/#comment-1242</link>
		<dc:creator>Gerald Kaszuba</dc:creator>
		<pubDate>Sat, 20 Sep 2008 23:49:32 +0000</pubDate>
		<guid isPermaLink="false">http://slowchop.com/2008/05/04/cython-getting-started-and-optimisation-tutorial/#comment-1242</guid>
		<description>@Greg,

Ah good point. Fixed.</description>
		<content:encoded><![CDATA[<p>@Greg,</p>
<p>Ah good point. Fixed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg</title>
		<link>http://slowchop.com/2008/05/04/cython-getting-started-and-optimisation-tutorial/#comment-1241</link>
		<dc:creator>Greg</dc:creator>
		<pubDate>Sat, 20 Sep 2008 23:30:50 +0000</pubDate>
		<guid isPermaLink="false">http://slowchop.com/2008/05/04/cython-getting-started-and-optimisation-tutorial/#comment-1241</guid>
		<description>You should switch the order of these lines to the following, otherwise Cython wouldn't install for me on Ubuntu:

sudo apt-get install python-dev
sudo easy_install Cython</description>
		<content:encoded><![CDATA[<p>You should switch the order of these lines to the following, otherwise Cython wouldn&#8217;t install for me on Ubuntu:</p>
<p>sudo apt-get install python-dev<br />
sudo easy_install Cython</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gerald Kaszuba</title>
		<link>http://slowchop.com/2008/05/04/cython-getting-started-and-optimisation-tutorial/#comment-1183</link>
		<dc:creator>Gerald Kaszuba</dc:creator>
		<pubDate>Mon, 05 May 2008 07:40:12 +0000</pubDate>
		<guid isPermaLink="false">http://slowchop.com/2008/05/04/cython-getting-started-and-optimisation-tutorial/#comment-1183</guid>
		<description>Julian,

Thanks. All fixed.</description>
		<content:encoded><![CDATA[<p>Julian,</p>
<p>Thanks. All fixed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Julian Yap</title>
		<link>http://slowchop.com/2008/05/04/cython-getting-started-and-optimisation-tutorial/#comment-1182</link>
		<dc:creator>Julian Yap</dc:creator>
		<pubDate>Mon, 05 May 2008 07:22:28 +0000</pubDate>
		<guid isPermaLink="false">http://slowchop.com/2008/05/04/cython-getting-started-and-optimisation-tutorial/#comment-1182</guid>
		<description>Small typo:
from distutils.core  
import setup  

Should be on one line:
from distutils.core import setup</description>
		<content:encoded><![CDATA[<p>Small typo:<br />
from distutils.core<br />
import setup  </p>
<p>Should be on one line:<br />
from distutils.core import setup</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gerald Kaszuba</title>
		<link>http://slowchop.com/2008/05/04/cython-getting-started-and-optimisation-tutorial/#comment-1181</link>
		<dc:creator>Gerald Kaszuba</dc:creator>
		<pubDate>Sun, 04 May 2008 22:07:46 +0000</pubDate>
		<guid isPermaLink="false">http://slowchop.com/2008/05/04/cython-getting-started-and-optimisation-tutorial/#comment-1181</guid>
		<description>Beetle B,

Originally, I was expecting Python code in Cython to be slower than Python! Also keep in mind that Psyco only runs on 32bit systems.</description>
		<content:encoded><![CDATA[<p>Beetle B,</p>
<p>Originally, I was expecting Python code in Cython to be slower than Python! Also keep in mind that Psyco only runs on 32bit systems.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Beetle B.</title>
		<link>http://slowchop.com/2008/05/04/cython-getting-started-and-optimisation-tutorial/#comment-1180</link>
		<dc:creator>Beetle B.</dc:creator>
		<pubDate>Sun, 04 May 2008 21:32:51 +0000</pubDate>
		<guid isPermaLink="false">http://slowchop.com/2008/05/04/cython-getting-started-and-optimisation-tutorial/#comment-1180</guid>
		<description>So psyco was actually faster than a straight cython run? Interesting.</description>
		<content:encoded><![CDATA[<p>So psyco was actually faster than a straight cython run? Interesting.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gerald Kaszuba</title>
		<link>http://slowchop.com/2008/05/04/cython-getting-started-and-optimisation-tutorial/#comment-1179</link>
		<dc:creator>Gerald Kaszuba</dc:creator>
		<pubDate>Sun, 04 May 2008 21:14:29 +0000</pubDate>
		<guid isPermaLink="false">http://slowchop.com/2008/05/04/cython-getting-started-and-optimisation-tutorial/#comment-1179</guid>
		<description>Alan,

Thanks. Wordpress was mangling my code.</description>
		<content:encoded><![CDATA[<p>Alan,</p>
<p>Thanks. Wordpress was mangling my code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gerald Kaszuba</title>
		<link>http://slowchop.com/2008/05/04/cython-getting-started-and-optimisation-tutorial/#comment-1178</link>
		<dc:creator>Gerald Kaszuba</dc:creator>
		<pubDate>Sun, 04 May 2008 21:13:07 +0000</pubDate>
		<guid isPermaLink="false">http://slowchop.com/2008/05/04/cython-getting-started-and-optimisation-tutorial/#comment-1178</guid>
		<description>Beetle B,

1. Welcome :)

2. OK I just tried it. 0.12 seconds. I'll update the post.

3. I realise that it isn't efficient. It was only there to show off Cython.</description>
		<content:encoded><![CDATA[<p>Beetle B,</p>
<p>1. Welcome <img src='http://slowchop.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>2. OK I just tried it. 0.12 seconds. I&#8217;ll update the post.</p>
<p>3. I realise that it isn&#8217;t efficient. It was only there to show off Cython.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
