Just saw this blog post come by and thought it was relevant to the discussion here:<br><br><a href="http://ianozsvald.com/2010/07/14/22937-faster-python-math-using-pycuda/">http://ianozsvald.com/2010/07/14/22937-faster-python-math-using-pycuda/</a><br>
<br>Steve<br><br><div class="gmail_quote">On Wed, Jul 14, 2010 at 9:34 AM, Andy Wiggin <span dir="ltr">&lt;<a href="mailto:andywiggin@gmail.com">andywiggin@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
<div class="im">On Tue, Jul 13, 2010 at 6:14 PM, Seth Friedman &lt;<a href="mailto:sfseth@gmail.com">sfseth@gmail.com</a>&gt; wrote:<br>
&gt; This is really neat.   I&#39;ve got a CUDA-capable nvidia card I&#39;m thinking I<br>
&gt; want to write a python program to answer the following question: what/where<br>
&gt; is the effect of the GIL when programming 240/480/720 1.3ghz cores?   It<br>
&gt; seems like this question must have been conquered to some degree, at<br>
&gt; least.   Is this simply a non issue because there isn&#39;t any python<br>
&gt; &quot;interpreting&quot; happening in parallel, that it&#39;s translated in serial<br>
&gt; (assuming single-threaded/single-process python doing the farming to the<br>
&gt; GPUs) ..?<br>
&gt;<br>
&gt; seth<br>
&gt;<br>
<br>
</div>Seth,<br>
it doesn&#39;t look to me like any python code is actually executing on<br>
the GPU. The &quot;kernels&quot; of code running on the GPU appear to still be<br>
written in C (notice the C-format string literals when creating<br>
SourceModule objects in the examples; that&#39;s what runs on the GPU). So<br>
unfortunately I don&#39;t think you can do the experiment you&#39;re<br>
describing.<br>
Regards,<br>
<font color="#888888">Andy<br>
</font><div><div></div><div class="h5">_______________________________________________<br>
Baypiggies mailing list<br>
<a href="mailto:Baypiggies@python.org">Baypiggies@python.org</a><br>
To change your subscription options or unsubscribe:<br>
<a href="http://mail.python.org/mailman/listinfo/baypiggies" target="_blank">http://mail.python.org/mailman/listinfo/baypiggies</a><br>
</div></div></blockquote></div><br>