<?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 for The Big Blob</title>
	<atom:link href="http://www.thebigblob.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thebigblob.com</link>
	<description>A blog of blobs</description>
	<lastBuildDate>Tue, 07 Feb 2012 12:15:52 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on Getting started with OpenCL and GPU Computing by Erik Smistad</title>
		<link>http://www.thebigblob.com/getting-started-with-opencl-and-gpu-computing/comment-page-1/#comment-2275</link>
		<dc:creator>Erik Smistad</dc:creator>
		<pubDate>Tue, 07 Feb 2012 12:15:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.thebigblob.com/?p=308#comment-2275</guid>
		<description>I don&#039;t now why you would want to write a function inside a kernel... but you can create a function in OpenCL that is inside the same file as the kernels and then call that function in the kernel (see below). If this is not what you want you may have to use macros or something (like &quot;#define MAX(a,b) a &gt; b ? a : b&quot;).

&lt;code&gt;
int myFunction() {
...
}

__kernel void myKernel() {
    myFunction();
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>I don&#8217;t now why you would want to write a function inside a kernel&#8230; but you can create a function in OpenCL that is inside the same file as the kernels and then call that function in the kernel (see below). If this is not what you want you may have to use macros or something (like &#8220;#define MAX(a,b) a > b ? a : b&#8221;).</p>
<p><code><br />
int myFunction() {<br />
...<br />
}</p>
<p>__kernel void myKernel() {<br />
    myFunction();<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting started with OpenCL and GPU Computing by Erik Smistad</title>
		<link>http://www.thebigblob.com/getting-started-with-opencl-and-gpu-computing/comment-page-1/#comment-2274</link>
		<dc:creator>Erik Smistad</dc:creator>
		<pubDate>Tue, 07 Feb 2012 12:11:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.thebigblob.com/?p=308#comment-2274</guid>
		<description>It is because the include line is &quot;#include &lt;CL/cl.h&gt;&quot;, but your include path is inside the CL directory. Try this instead: &quot;gcc -I /opt/AMDAPP/include/ main.c -o main.o&quot;</description>
		<content:encoded><![CDATA[<p>It is because the include line is &#8220;#include <cl /cl.h>&#8220;, but your include path is inside the CL directory. Try this instead: &#8220;gcc -I /opt/AMDAPP/include/ main.c -o main.o&#8221;</cl></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using the C++ bindings for OpenCL by Erik Smistad</title>
		<link>http://www.thebigblob.com/using-the-cpp-bindings-for-opencl/comment-page-1/#comment-2273</link>
		<dc:creator>Erik Smistad</dc:creator>
		<pubDate>Tue, 07 Feb 2012 12:07:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.thebigblob.com/?p=351#comment-2273</guid>
		<description>Not sure whats wrong. Myabe it could be that it can&#039;t find the OpenCL file. Visual studio often puts the binary file in another folder than the source code, so you might have to copy the kernel source code (the .cl file) to the folder with the binary (probably a folder called bin or something).</description>
		<content:encoded><![CDATA[<p>Not sure whats wrong. Myabe it could be that it can&#8217;t find the OpenCL file. Visual studio often puts the binary file in another folder than the source code, so you might have to copy the kernel source code (the .cl file) to the folder with the binary (probably a folder called bin or something).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting started with OpenCL and GPU Computing by Ajay</title>
		<link>http://www.thebigblob.com/getting-started-with-opencl-and-gpu-computing/comment-page-1/#comment-2272</link>
		<dc:creator>Ajay</dc:creator>
		<pubDate>Tue, 07 Feb 2012 09:48:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.thebigblob.com/?p=308#comment-2272</guid>
		<description>Hey Erik,
 Is there a way to write functions inside the opencl kernel?</description>
		<content:encoded><![CDATA[<p>Hey Erik,<br />
 Is there a way to write functions inside the opencl kernel?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Marching Cubes implementation using OpenCL and OpenGL by Henry</title>
		<link>http://www.thebigblob.com/marching-cubes-implementation-using-opencl-and-opengl/comment-page-1/#comment-2269</link>
		<dc:creator>Henry</dc:creator>
		<pubDate>Sun, 05 Feb 2012 09:22:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.thebigblob.com/?p=524#comment-2269</guid>
		<description>Can you try this NVIDIA compatible version, in order to verify if it works? i&#039;m doing a &quot;state of the art&quot; for opencl surface reconstruction algorithm and i would appreciate it if you could make this code available. Tks a lot</description>
		<content:encoded><![CDATA[<p>Can you try this NVIDIA compatible version, in order to verify if it works? i&#8217;m doing a &#8220;state of the art&#8221; for opencl surface reconstruction algorithm and i would appreciate it if you could make this code available. Tks a lot</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using the C++ bindings for OpenCL by Jesse</title>
		<link>http://www.thebigblob.com/using-the-cpp-bindings-for-opencl/comment-page-1/#comment-2263</link>
		<dc:creator>Jesse</dc:creator>
		<pubDate>Sat, 04 Feb 2012 00:52:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.thebigblob.com/?p=351#comment-2263</guid>
		<description>I meant it gives the error in Windows under Visual Studio 2010</description>
		<content:encoded><![CDATA[<p>I meant it gives the error in Windows under Visual Studio 2010</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using the C++ bindings for OpenCL by Jesse</title>
		<link>http://www.thebigblob.com/using-the-cpp-bindings-for-opencl/comment-page-1/#comment-2262</link>
		<dc:creator>Jesse</dc:creator>
		<pubDate>Sat, 04 Feb 2012 00:51:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.thebigblob.com/?p=351#comment-2262</guid>
		<description>Sorry I wasnt very detailed. It runs fine on Ubuntu but doesnt seems to give the error in windows with visual studio.</description>
		<content:encoded><![CDATA[<p>Sorry I wasnt very detailed. It runs fine on Ubuntu but doesnt seems to give the error in windows with visual studio.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting started with OpenCL and GPU Computing by amd nvidia benchmark</title>
		<link>http://www.thebigblob.com/getting-started-with-opencl-and-gpu-computing/comment-page-1/#comment-2261</link>
		<dc:creator>amd nvidia benchmark</dc:creator>
		<pubDate>Fri, 03 Feb 2012 23:32:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.thebigblob.com/?p=308#comment-2261</guid>
		<description>&lt;strong&gt;amd nvidia benchmark...&lt;/strong&gt;

[...]The Big Blob &#187; Getting started with OpenCL and GPU Computing[...]...</description>
		<content:encoded><![CDATA[<p><strong>amd nvidia benchmark&#8230;</strong></p>
<p>[...]The Big Blob &raquo; Getting started with OpenCL and GPU Computing[...]&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting started with OpenCL and GPU Computing by José</title>
		<link>http://www.thebigblob.com/getting-started-with-opencl-and-gpu-computing/comment-page-1/#comment-2260</link>
		<dc:creator>José</dc:creator>
		<pubDate>Fri, 03 Feb 2012 23:07:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.thebigblob.com/?p=308#comment-2260</guid>
		<description>&lt;blockquote&gt;
&lt;a href=&quot;#comment-2259&quot; rel=&quot;nofollow&quot;&gt;
&lt;strong&gt;&lt;em&gt;José:&lt;/em&gt;&lt;/strong&gt;
&lt;/a&gt;
 I tried to install and run your example but the answer is that it can’t find the file cl.h
What should I look for?
I tried to reinstall but it simply don’t want to run.
The icd files and the .h are where they are supposed to be.
The instalation of the openCL is on the /opt/AMDAPP/
Also, running on a Phenom II 1090T + HD6850
&lt;/blockquote&gt;
Forgot this information:

The comand lines that I used:

main.c @ ~/openCL-teste/

comand line used:
gcc -I /opt/AMDAPP/include/CL/ main.c -o main.o</description>
		<content:encoded><![CDATA[<blockquote><p>
<a href="#comment-2259" rel="nofollow"><br />
<strong><em>José:</em></strong><br />
</a><br />
 I tried to install and run your example but the answer is that it can’t find the file cl.h<br />
What should I look for?<br />
I tried to reinstall but it simply don’t want to run.<br />
The icd files and the .h are where they are supposed to be.<br />
The instalation of the openCL is on the /opt/AMDAPP/<br />
Also, running on a Phenom II 1090T + HD6850
</p></blockquote>
<p>Forgot this information:</p>
<p>The comand lines that I used:</p>
<p>main.c @ ~/openCL-teste/</p>
<p>comand line used:<br />
gcc -I /opt/AMDAPP/include/CL/ main.c -o main.o</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting started with OpenCL and GPU Computing by José</title>
		<link>http://www.thebigblob.com/getting-started-with-opencl-and-gpu-computing/comment-page-1/#comment-2259</link>
		<dc:creator>José</dc:creator>
		<pubDate>Fri, 03 Feb 2012 23:03:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.thebigblob.com/?p=308#comment-2259</guid>
		<description>I tried to install and run your example but the answer is that it can&#039;t find the file cl.h

What should I look for?

I tried to reinstall but it simply don&#039;t want to run.

The icd files and the .h are where they are supposed to be.

The instalation of the openCL is on the /opt/AMDAPP/

Also, running on a Phenom II 1090T + HD6850</description>
		<content:encoded><![CDATA[<p>I tried to install and run your example but the answer is that it can&#8217;t find the file cl.h</p>
<p>What should I look for?</p>
<p>I tried to reinstall but it simply don&#8217;t want to run.</p>
<p>The icd files and the .h are where they are supposed to be.</p>
<p>The instalation of the openCL is on the /opt/AMDAPP/</p>
<p>Also, running on a Phenom II 1090T + HD6850</p>
]]></content:encoded>
	</item>
</channel>
</rss>

