<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/'><id>tag:blogger.com,1999:blog-8952753915088677199.post230673319280040025..comments</id><updated>2008-06-13T09:43:24.393-04:00</updated><title type='text'>Comments on montsamu musings: Erlang: parallel-map and parallel-foreach</title><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://montsamu.blogspot.com/feeds/230673319280040025/comments/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8952753915088677199/230673319280040025/comments/default'/><link rel='alternate' type='text/html' href='http://montsamu.blogspot.com/2007/02/erlang-parallel-map-and-parallel.html'/><author><name>montsamu</name><uri>http://www.blogger.com/profile/07591244606673064670</uri><email>montsamu@gmail.com</email></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>2</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-8952753915088677199.post-5392472120257151703</id><published>2008-06-13T09:43:00.000-04:00</published><updated>2008-06-13T09:43:00.000-04:00</updated><title type='text'>Luke, that is more beautiful code; is there any pe...</title><content type='html'>Luke, that is more beautiful code; is there any performance difference?</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8952753915088677199/230673319280040025/comments/default/5392472120257151703'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8952753915088677199/230673319280040025/comments/default/5392472120257151703'/><link rel='alternate' type='text/html' href='http://montsamu.blogspot.com/2007/02/erlang-parallel-map-and-parallel.html?showComment=1213364580000#c5392472120257151703' title=''/><author><name>Matt</name><uri>http://www.blogger.com/profile/17935063827932240235</uri><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://montsamu.blogspot.com/2007/02/erlang-parallel-map-and-parallel.html' ref='tag:blogger.com,1999:blog-8952753915088677199.post-230673319280040025' source='http://www.blogger.com/feeds/8952753915088677199/posts/default/230673319280040025' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-8952753915088677199.post-2043916739393316970</id><published>2007-02-26T12:53:00.000-05:00</published><updated>2007-02-26T12:53:00.000-05:00</updated><title type='text'>Maybe I'm a sucker for obfuscation but I like my p...</title><content type='html'>Maybe I'm a sucker for obfuscation but I like my parallel map better than Joe's:&lt;BR/&gt;&lt;BR/&gt;%% Map function F over list L in parallel.&lt;BR/&gt;parmap(F, L) -&gt;&lt;BR/&gt;    Parent = self(),&lt;BR/&gt;    [receive {Pid, Result} -&gt; Result end&lt;BR/&gt;     || Pid &lt;- [spawn(fun() -&gt; Parent ! {self(), F(X)} end) || X &lt;- L]].&lt;BR/&gt;&lt;BR/&gt;would that the text box understood PRE tags..</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8952753915088677199/230673319280040025/comments/default/2043916739393316970'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8952753915088677199/230673319280040025/comments/default/2043916739393316970'/><link rel='alternate' type='text/html' href='http://montsamu.blogspot.com/2007/02/erlang-parallel-map-and-parallel.html?showComment=1172512380000#c2043916739393316970' title=''/><author><name>Luke Gorrie</name><uri>http://www.blogger.com/profile/09614916402667226914</uri><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://montsamu.blogspot.com/2007/02/erlang-parallel-map-and-parallel.html' ref='tag:blogger.com,1999:blog-8952753915088677199.post-230673319280040025' source='http://www.blogger.com/feeds/8952753915088677199/posts/default/230673319280040025' type='text/html'/></entry></feed>