<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: My Python maxes out my cpus…</title>
	<atom:link href="http://jessenoller.com/2008/05/07/my-python-maxes-out-my-cpus/feed/" rel="self" type="application/rss+xml" />
	<link>http://jessenoller.com/2008/05/07/my-python-maxes-out-my-cpus/</link>
	<description>python, programming and other things</description>
	<lastBuildDate>Mon, 02 Jan 2012 09:21:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: jnoller</title>
		<link>http://jessenoller.com/2008/05/07/my-python-maxes-out-my-cpus/comment-page-1/#comment-139305</link>
		<dc:creator>jnoller</dc:creator>
		<pubDate>Fri, 09 May 2008 03:05:56 +0000</pubDate>
		<guid isPermaLink="false">http://jessenoller.com/?p=260#comment-139305</guid>
		<description>It&#039;s a bit of a joke - in this case, I am actually doing a unit test to ensure that the python application is fully leveraging the cores on the machine. A test I ran shortly thereafter on a 4 core box showed I could tap that out too with the workload.&lt;br&gt;&lt;br&gt;Functionally, the processing library is forking processes under the covers. The goal was not to max out for maxing out&#039;s sake, but rather to test an application which has to be able to cleanly and easily use al the cores on a box.</description>
		<content:encoded><![CDATA[<p>It’s a bit of a joke — in this case, I am actually doing a unit test to ensure that the python application is fully leveraging the cores on the machine. A test I ran shortly thereafter on a 4 core box showed I could tap that out too with the workload.</p>
<p>Functionally, the processing library is forking processes under the covers. The goal was not to max out for maxing out’s sake, but rather to test an application which has to be able to cleanly and easily use al the cores on a box.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: patrick</title>
		<link>http://jessenoller.com/2008/05/07/my-python-maxes-out-my-cpus/comment-page-1/#comment-139304</link>
		<dc:creator>patrick</dc:creator>
		<pubDate>Fri, 09 May 2008 02:26:51 +0000</pubDate>
		<guid isPermaLink="false">http://jessenoller.com/?p=260#comment-139304</guid>
		<description>It&#039;s pretty easy to max out your cpu if you never sleep to give the os some time.  Even just this code will max things out, if you run enough processes to match your cpu count:&lt;br&gt;&lt;br&gt;while 1:&lt;br&gt;    pass</description>
		<content:encoded><![CDATA[<p>It’s pretty easy to max out your cpu if you never sleep to give the os some time.  Even just this code will max things out, if you run enough processes to match your cpu count:</p>
<p>while 1:<br />    pass</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jnoller</title>
		<link>http://jessenoller.com/2008/05/07/my-python-maxes-out-my-cpus/comment-page-1/#comment-62398</link>
		<dc:creator>jnoller</dc:creator>
		<pubDate>Thu, 08 May 2008 23:05:56 +0000</pubDate>
		<guid isPermaLink="false">http://jessenoller.com/?p=260#comment-62398</guid>
		<description>It&#039;s a bit of a joke - in this case, I am actually doing a unit test to ensure that the python application is fully leveraging the cores on the machine. A test I ran shortly thereafter on a 4 core box showed I could tap that out too with the workload.&lt;br&gt;&lt;br&gt;Functionally, the processing library is forking processes under the covers. The goal was not to max out for maxing out&#039;s sake, but rather to test an application which has to be able to cleanly and easily use al the cores on a box.</description>
		<content:encoded><![CDATA[<p>It’s a bit of a joke — in this case, I am actually doing a unit test to ensure that the python application is fully leveraging the cores on the machine. A test I ran shortly thereafter on a 4 core box showed I could tap that out too with the workload.</p>
<p>Functionally, the processing library is forking processes under the covers. The goal was not to max out for maxing out’s sake, but rather to test an application which has to be able to cleanly and easily use al the cores on a box.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: patrick</title>
		<link>http://jessenoller.com/2008/05/07/my-python-maxes-out-my-cpus/comment-page-1/#comment-62397</link>
		<dc:creator>patrick</dc:creator>
		<pubDate>Thu, 08 May 2008 22:26:51 +0000</pubDate>
		<guid isPermaLink="false">http://jessenoller.com/?p=260#comment-62397</guid>
		<description>It&#039;s pretty easy to max out your cpu if you never sleep to give the os some time.  Even just this code will max things out, if you run enough processes to match your cpu count:&lt;br&gt;&lt;br&gt;while 1:&lt;br&gt;    pass</description>
		<content:encoded><![CDATA[<p>It’s pretty easy to max out your cpu if you never sleep to give the os some time.  Even just this code will max things out, if you run enough processes to match your cpu count:</p>
<p>while 1:<br />    pass</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jnoller</title>
		<link>http://jessenoller.com/2008/05/07/my-python-maxes-out-my-cpus/comment-page-1/#comment-62396</link>
		<dc:creator>jnoller</dc:creator>
		<pubDate>Wed, 07 May 2008 21:20:49 +0000</pubDate>
		<guid isPermaLink="false">http://jessenoller.com/?p=260#comment-62396</guid>
		<description>Using my little test app, I could really abuse $N cores by simply increasing the worker count and workload - it scales as far as I need it to right now.</description>
		<content:encoded><![CDATA[<p>Using my little test app, I could really abuse $N cores by simply increasing the worker count and workload — it scales as far as I need it to right now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stan</title>
		<link>http://jessenoller.com/2008/05/07/my-python-maxes-out-my-cpus/comment-page-1/#comment-62395</link>
		<dc:creator>Stan</dc:creator>
		<pubDate>Wed, 07 May 2008 20:11:26 +0000</pubDate>
		<guid isPermaLink="false">http://jessenoller.com/?p=260#comment-62395</guid>
		<description>Time for quad core!</description>
		<content:encoded><![CDATA[<p>Time for quad core!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Object Caching 667/668 objects using disk: basic

Served from: jessenoller.com @ 2012-02-07 04:03:10 -->
