<?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: .NET 4.0 And Our Parallel Future</title>
	<atom:link href="http://www.codethinked.com/net-40-and-our-parallel-future/feed" rel="self" type="application/rss+xml" />
	<link>http://www.codethinked.com/net-40-and-our-parallel-future</link>
	<description>by Justin Etheredge</description>
	<lastBuildDate>Wed, 20 Mar 2013 00:45:16 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Jeff Froom</title>
		<link>http://www.codethinked.com/net-40-and-our-parallel-future/comment-page-1#comment-26757</link>
		<dc:creator>Jeff Froom</dc:creator>
		<pubDate>Wed, 13 Jun 2012 02:53:23 +0000</pubDate>
		<guid isPermaLink="false">/post/2010/02/25/NET-40-And-Our-Parallel-Future.aspx#comment-26757</guid>
		<description><![CDATA[Hello, thanks for the great blog post. 

Under what licence have you released this code you wrote that is now listed on this wiki entry?

http://en.wikipedia.org/wiki/Damerau%E2%80%93Levenshtein_distance

MIT/GPL like jquery ? http://jquery.org/license

Thanks!
Jeff]]></description>
		<content:encoded><![CDATA[<p>Hello, thanks for the great blog post. </p>
<p>Under what licence have you released this code you wrote that is now listed on this wiki entry?</p>
<p><a href="http://en.wikipedia.org/wiki/Damerau%E2%80%93Levenshtein_distance" rel="nofollow">http://en.wikipedia.org/wiki/Damerau%E2%80%93Levenshtein_distance</a></p>
<p>MIT/GPL like jquery ? <a href="http://jquery.org/license" rel="nofollow">http://jquery.org/license</a></p>
<p>Thanks!<br />
Jeff</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Justin Etheredge</title>
		<link>http://www.codethinked.com/net-40-and-our-parallel-future/comment-page-1#comment-3002</link>
		<dc:creator>Justin Etheredge</dc:creator>
		<pubDate>Tue, 09 Mar 2010 15:15:41 +0000</pubDate>
		<guid isPermaLink="false">/post/2010/02/25/NET-40-And-Our-Parallel-Future.aspx#comment-3002</guid>
		<description><![CDATA[@Sam Thanks! And yes, I just ported the code from Wikipedia directly. If I have to use it in production, I&#039;ll most certainly check out your implementation. Actually, I&#039;ll probably check it out for fun anyways. :-)]]></description>
		<content:encoded><![CDATA[<p>@Sam Thanks! And yes, I just ported the code from Wikipedia directly. If I have to use it in production, I&#8217;ll most certainly check out your implementation. Actually, I&#8217;ll probably check it out for fun anyways. :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam</title>
		<link>http://www.codethinked.com/net-40-and-our-parallel-future/comment-page-1#comment-3001</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Tue, 09 Mar 2010 14:57:13 +0000</pubDate>
		<guid isPermaLink="false">/post/2010/02/25/NET-40-And-Our-Parallel-Future.aspx#comment-3001</guid>
		<description><![CDATA[Great post, thanks.  This was especially interesting for me, as I wrote a parallel processing framework for the purpose of running Levenshtein in .NET 2.0!  I will experiment to see if this is any faster, but man, it would have saved me a lot of work back then.

I assume you were using Levenshtein only for the purpose of demo-ing this new framework, but if you actually are trying to optimize, you should use this version of Levenshtein.  It&#039;s 2.5 times faster - http://webreflection.blogspot.com/2009/02/levenshtein-algorithm-revisited-25.html]]></description>
		<content:encoded><![CDATA[<p>Great post, thanks.  This was especially interesting for me, as I wrote a parallel processing framework for the purpose of running Levenshtein in .NET 2.0!  I will experiment to see if this is any faster, but man, it would have saved me a lot of work back then.</p>
<p>I assume you were using Levenshtein only for the purpose of demo-ing this new framework, but if you actually are trying to optimize, you should use this version of Levenshtein.  It&#8217;s 2.5 times faster &#8211; <a href="http://webreflection.blogspot.com/2009/02/levenshtein-algorithm-revisited-25.html" rel="nofollow">http://webreflection.blogspot.com/2009/02/levenshtein-algorithm-revisited-25.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Danimal</title>
		<link>http://www.codethinked.com/net-40-and-our-parallel-future/comment-page-1#comment-3000</link>
		<dc:creator>Danimal</dc:creator>
		<pubDate>Sat, 27 Feb 2010 23:45:34 +0000</pubDate>
		<guid isPermaLink="false">/post/2010/02/25/NET-40-And-Our-Parallel-Future.aspx#comment-3000</guid>
		<description><![CDATA[Thanks Justin. It&#039;s pretty cool that with a pretty easy coding change you could get an impressive performance improvement.]]></description>
		<content:encoded><![CDATA[<p>Thanks Justin. It&#8217;s pretty cool that with a pretty easy coding change you could get an impressive performance improvement.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Justin Etheredge</title>
		<link>http://www.codethinked.com/net-40-and-our-parallel-future/comment-page-1#comment-2999</link>
		<dc:creator>Justin Etheredge</dc:creator>
		<pubDate>Sat, 27 Feb 2010 21:19:30 +0000</pubDate>
		<guid isPermaLink="false">/post/2010/02/25/NET-40-And-Our-Parallel-Future.aspx#comment-2999</guid>
		<description><![CDATA[@Danimal @Rob I have posted the performance numbers that I saw. Unfortunately I only have a dual core proc to try it on.]]></description>
		<content:encoded><![CDATA[<p>@Danimal @Rob I have posted the performance numbers that I saw. Unfortunately I only have a dual core proc to try it on.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob Bazinet</title>
		<link>http://www.codethinked.com/net-40-and-our-parallel-future/comment-page-1#comment-2998</link>
		<dc:creator>Rob Bazinet</dc:creator>
		<pubDate>Sat, 27 Feb 2010 12:44:48 +0000</pubDate>
		<guid isPermaLink="false">/post/2010/02/25/NET-40-And-Our-Parallel-Future.aspx#comment-2998</guid>
		<description><![CDATA[Very interesting Justin.  It would have been really cool if you compared the execution times with and without using any parallel extensions and posted them as part of the post.

How significant was the increase in performance?]]></description>
		<content:encoded><![CDATA[<p>Very interesting Justin.  It would have been really cool if you compared the execution times with and without using any parallel extensions and posted them as part of the post.</p>
<p>How significant was the increase in performance?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Danimal</title>
		<link>http://www.codethinked.com/net-40-and-our-parallel-future/comment-page-1#comment-2997</link>
		<dc:creator>Danimal</dc:creator>
		<pubDate>Fri, 26 Feb 2010 16:36:04 +0000</pubDate>
		<guid isPermaLink="false">/post/2010/02/25/NET-40-And-Our-Parallel-Future.aspx#comment-2997</guid>
		<description><![CDATA[Great post -- thanks. What sort of performance improvements did you see moving to the parallel implementation?]]></description>
		<content:encoded><![CDATA[<p>Great post &#8212; thanks. What sort of performance improvements did you see moving to the parallel implementation?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
