<?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: Lazy Execution in GPU MATLAB® computing</title>
	<atom:link href="http://blog.accelereyes.com/blog/2010/02/09/109/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.accelereyes.com/blog/2010/02/09/109/</link>
	<description>Helpful posts about GPU computing. Discussion of Jacket and ArrayFire. Real speedups on real code!</description>
	<lastBuildDate>Wed, 02 Feb 2011 15:32:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Sandeep</title>
		<link>http://blog.accelereyes.com/blog/2010/02/09/109/comment-page-1/#comment-270</link>
		<dc:creator>Sandeep</dc:creator>
		<pubDate>Thu, 22 Jul 2010 15:51:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.accelereyes.com/blog/?p=109#comment-270</guid>
		<description>@ Keith .. Thanks for the note. You&#039;re right - that has to be &#039;cp&#039;. Apologies for any confusion caused by the typo.</description>
		<content:encoded><![CDATA[<p>@ Keith .. Thanks for the note. You&#8217;re right &#8211; that has to be &#8216;cp&#8217;. Apologies for any confusion caused by the typo.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Keith</title>
		<link>http://blog.accelereyes.com/blog/2010/02/09/109/comment-page-1/#comment-267</link>
		<dc:creator>Keith</dc:creator>
		<pubDate>Wed, 21 Jul 2010 04:35:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.accelereyes.com/blog/?p=109#comment-267</guid>
		<description>Hi

On page: http://blog.accelereyes.com/blog/2010/02/09/109/#respond

In this code:

Code A: Jacket code

gcache flush; % Makes a clean slate. Removes old traces
tic
for i = 1:10000
  p = grand(100); q = grand(100);
  gforce(p,q); % Forces inputs to exist before proceeding
  p = cos(p);    &lt;-------------------------------------------- cp = ...
  sp = sin(p);
  cq = cos(q);
  sq = sin(q);
  A = cp + sq;
  B = cq + sp;
  gforce(A,B); % Makes sure A,B are computed
end
toc


I believe you need &quot;p = cos(p);&quot; to be &quot;cp = cos(p);&quot;</description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>On page: <a href="http://blog.accelereyes.com/blog/2010/02/09/109/#respond" rel="nofollow">http://blog.accelereyes.com/blog/2010/02/09/109/#respond</a></p>
<p>In this code:</p>
<p>Code A: Jacket code</p>
<p>gcache flush; % Makes a clean slate. Removes old traces<br />
tic<br />
for i = 1:10000<br />
  p = grand(100); q = grand(100);<br />
  gforce(p,q); % Forces inputs to exist before proceeding<br />
  p = cos(p);    &lt;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; cp = &#8230;<br />
  sp = sin(p);<br />
  cq = cos(q);<br />
  sq = sin(q);<br />
  A = cp + sq;<br />
  B = cq + sp;<br />
  gforce(A,B); % Makes sure A,B are computed<br />
end<br />
toc</p>
<p>I believe you need &quot;p = cos(p);&quot; to be &quot;cp = cos(p);&quot;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: melonakos</title>
		<link>http://blog.accelereyes.com/blog/2010/02/09/109/comment-page-1/#comment-75</link>
		<dc:creator>melonakos</dc:creator>
		<pubDate>Sat, 20 Feb 2010 04:16:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.accelereyes.com/blog/?p=109#comment-75</guid>
		<description>Thanks for the kind comment Raphael... we&#039;ll keep posting here and hope that the content helps everyone gain more productivity for your apps.</description>
		<content:encoded><![CDATA[<p>Thanks for the kind comment Raphael&#8230; we&#8217;ll keep posting here and hope that the content helps everyone gain more productivity for your apps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raphael Attie</title>
		<link>http://blog.accelereyes.com/blog/2010/02/09/109/comment-page-1/#comment-51</link>
		<dc:creator>Raphael Attie</dc:creator>
		<pubDate>Sat, 13 Feb 2010 01:40:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.accelereyes.com/blog/?p=109#comment-51</guid>
		<description>This is a great idea to summarize here the improvements and solutions that rose from the questions asked in the forum. I hope this will keep going, it makes communication between developers and users very vivid and exciting.</description>
		<content:encoded><![CDATA[<p>This is a great idea to summarize here the improvements and solutions that rose from the questions asked in the forum. I hope this will keep going, it makes communication between developers and users very vivid and exciting.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sr. Software Engineer ~ Production Extraction Framework &#8230; &#124; DevBlogr</title>
		<link>http://blog.accelereyes.com/blog/2010/02/09/109/comment-page-1/#comment-49</link>
		<dc:creator>Sr. Software Engineer ~ Production Extraction Framework &#8230; &#124; DevBlogr</dc:creator>
		<pubDate>Fri, 12 Feb 2010 08:34:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.accelereyes.com/blog/?p=109#comment-49</guid>
		<description>[...] GPU MATLAB Computing » Lazy Execution in MATLAB GPU computing [...]</description>
		<content:encoded><![CDATA[<p>[...] GPU MATLAB Computing » Lazy Execution in MATLAB GPU computing [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

