Yes I noted that, but too late. I will think about it for my next purchase! <br>Anyway, thanks for the confirmation.<br><br>Jerome<br><br><div class="gmail_quote">2010/3/6 Wagner Sales <span dir="ltr">&lt;<a href="mailto:wsales@gmail.com">wsales@gmail.com</a>&gt;</span><br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Hi Jerôme,<br>
<br>
The ATI driver ( or GLSL compiler ) are very buggy. Because that, GPU<br>
ray casting will work only on NVidia cards on Linux and Windows. Mac<br>
have issues too.<br>
<br>
Regards,<br>
<br>
Wagner<br>
<br>
2010/3/6 Jérôme &lt;<a href="mailto:jerome.velut@gmail.com">jerome.velut@gmail.com</a>&gt;:<br>
<div><div></div><div class="h5">&gt; Hi,<br>
&gt; I ran into the &quot;empty not supported extensions list&quot;, with linux/ATI/Mesa.<br>
&gt; By reading, I found that the problem is not due to extensions, but due<br>
&gt; to:<br>
&gt;<br>
&gt; if(strstr(gl_vendor,&quot;ATI&quot;)!=0)<br>
&gt;     {<br>
&gt;     this-&gt;LoadExtensionsSucceeded=0;<br>
&gt;     return;<br>
&gt;     }<br>
&gt;<br>
&gt; and<br>
&gt;   if(strstr(gl_version,&quot;Mesa&quot;)!=0)<br>
&gt;     {<br>
&gt;     this-&gt;LoadExtensionsSucceeded=0;<br>
&gt;     return;<br>
&gt;     }<br>
&gt;<br>
&gt; (Code from<br>
&gt; ParaView3/VTK/VolumeRendering/vtkOpenGLGPUVolumeRayCastMapper.cxx)<br>
&gt;<br>
&gt; My feeling is that GPU raycast mapping is impossible with ATI card.<br>
&gt; My question is: Am I wrong? If there is any, what should I do to enable GPU<br>
&gt; rendering on ATI?<br>
&gt;<br>
&gt; Thanks a lot!<br>
&gt;<br>
&gt; Jerome<br>
&gt; (ps: I tried with an NVidia quadro and... wow! Thanks!)<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; 2010/3/2 Wagner Sales &lt;<a href="mailto:wsales@gmail.com">wsales@gmail.com</a>&gt;<br>
&gt;&gt;<br>
&gt;&gt; Hi all,<br>
&gt;&gt;<br>
&gt;&gt; Sorry by ask this same question twice times. I know about Mac issues.<br>
&gt;&gt; But I&#39;m starting in parallel volume rendering playground, and I really<br>
&gt;&gt; don&#39;t know how to take ( if possible ) advantages from GPU volume<br>
&gt;&gt; rendering in a parallel environment. May be my knowledge aren&#39;t the<br>
&gt;&gt; sufficient to know this by myself. Are advantages on this field? For<br>
&gt;&gt; example, can we render a large dataset in multiple machines using the<br>
&gt;&gt; GPU power instead the current approaches, that&#39;s relies ( at least I<br>
&gt;&gt; know ) on the CPUs? And, if possible, are some SLI support too?<br>
&gt;&gt;<br>
&gt;&gt; Best regards,<br>
&gt;&gt;<br>
&gt;&gt; Wagner<br>
&gt;&gt;<br>
&gt;&gt; 2010/3/1 Eric E. Monson &lt;<a href="mailto:emonson@cs.duke.edu">emonson@cs.duke.edu</a>&gt;:<br>
&gt;&gt; &gt; Hey all,<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Thanks for the feedback. Yup, I can get it to error out just as you<br>
&gt;&gt; &gt; said! :)<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; I guess I&#39;d seen something about this on the list regarding VTKEdge, but<br>
&gt;&gt; &gt; hadn&#39;t remembered. Please let us all know, though, if a solution pops up.<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Talk to you later,<br>
&gt;&gt; &gt; -Eric<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; On Mar 1, 2010, at 1:54 PM, Francois Bertel wrote:<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; Hello,<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; The GPU Rast Mapper does not work on Mac so it is skipped to avoid bad<br>
&gt;&gt; &gt;&gt; behavior.<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; It is skipped because:<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; 1. on Snow Leopard with an nVidia card, the GPU Ray Cast mapper<br>
&gt;&gt; &gt;&gt; triggers a bug in the OpenGL driver (that we cannot locate precisely<br>
&gt;&gt; &gt;&gt; enough) and the driver will exit the application with:<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; (0) : fatal error C9999: Nested functions, aborting!<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; or:<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; (0) : fatal error C9999: *** exception during compilation ***<br>
&gt;&gt; &gt;&gt; Cg compiler terminated due to fatal error<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; 2. On Leopard, a user reported a corrupted image.<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; If you are adventurous, and see what happen for your specific<br>
&gt;&gt; &gt;&gt; configuration, you can comment out the lines in<br>
&gt;&gt; &gt;&gt; VTK/VolumeRendering/vtkOpenGLGPUVolumeRayCastMapper.cxx  that skip the<br>
&gt;&gt; &gt;&gt; Macs:<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt;  // It does not work on Apple OS X Snow Leopard with nVidia.<br>
&gt;&gt; &gt;&gt;  // There is a bug in the OpenGL driver with an error in the<br>
&gt;&gt; &gt;&gt;  // Cg compiler about an infinite loop.<br>
&gt;&gt; &gt;&gt; #ifdef __APPLE__<br>
&gt;&gt; &gt;&gt;  this-&gt;LoadExtensionsSucceeded=0;<br>
&gt;&gt; &gt;&gt;  return;<br>
&gt;&gt; &gt;&gt; #endif<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; Regards<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; On Mon, Mar 1, 2010 at 1:05 PM, Aashish Chaudhary<br>
&gt;&gt; &gt;&gt; &lt;<a href="mailto:aashish.chaudhary@kitware.com">aashish.chaudhary@kitware.com</a>&gt; wrote:<br>
&gt;&gt; &gt;&gt;&gt; Eric,<br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt; Yes you do need to have certain extensions. Now the mapper I have not<br>
&gt;&gt; &gt;&gt;&gt; written myself and hence I am forwarding this email to vtk users list.<br>
&gt;&gt; &gt;&gt;&gt; I<br>
&gt;&gt; &gt;&gt;&gt; hope that the original author would respond to it.<br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt; I will see if we can produce a better message which could list the<br>
&gt;&gt; &gt;&gt;&gt; missing<br>
&gt;&gt; &gt;&gt;&gt; extensions.<br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt; Thanks for testing it out.<br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt; ~Regards,<br>
&gt;&gt; &gt;&gt;&gt; Aashish<br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt; On Mon, Mar 1, 2010 at 12:56 PM, Eric E. Monson &lt;<a href="mailto:emonson@cs.duke.edu">emonson@cs.duke.edu</a>&gt;<br>
&gt;&gt; &gt;&gt;&gt; wrote:<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt; Hey Aashish,<br>
&gt;&gt; &gt;&gt;&gt;&gt; I&#39;ve been having trouble with it, too, on my Mac (OS X 10.6.2, PV<br>
&gt;&gt; &gt;&gt;&gt;&gt; compiled<br>
&gt;&gt; &gt;&gt;&gt;&gt; serial x86_64 arch updated from CVS and rebuilt today, CMake<br>
&gt;&gt; &gt;&gt;&gt;&gt; 2.9.20100113).<br>
&gt;&gt; &gt;&gt;&gt;&gt; Are there any special hardware requirements, then? I can see the GPU<br>
&gt;&gt; &gt;&gt;&gt;&gt; Volume<br>
&gt;&gt; &gt;&gt;&gt;&gt; Mapper option, but when I switch over to that from the &quot;Fixed point&quot;<br>
&gt;&gt; &gt;&gt;&gt;&gt; mapper<br>
&gt;&gt; &gt;&gt;&gt;&gt; I get this error:<br>
&gt;&gt; &gt;&gt;&gt;&gt; ERROR:<br>
&gt;&gt; &gt;&gt;&gt;&gt; In<br>
&gt;&gt; &gt;&gt;&gt;&gt; /Users/emonson/Programming/ParaView_cvs/ParaView3/VTK/VolumeRendering/vtkOpenGLGPUVolumeRayCastMapper.cxx,<br>
&gt;&gt; &gt;&gt;&gt;&gt; line 4110<br>
&gt;&gt; &gt;&gt;&gt;&gt; vtkOpenGLGPUVolumeRayCastMapper (0x12082cc00): Rendering failed<br>
&gt;&gt; &gt;&gt;&gt;&gt; because<br>
&gt;&gt; &gt;&gt;&gt;&gt; the following OpenGL extensions are required but not supported:<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt; (Just as this shows, the list of OpenGL extensions it says are<br>
&gt;&gt; &gt;&gt;&gt;&gt; required<br>
&gt;&gt; &gt;&gt;&gt;&gt; but not supported is empty...) My graphics card is a NVIDIA GeForce<br>
&gt;&gt; &gt;&gt;&gt;&gt; 8800 GT.<br>
&gt;&gt; &gt;&gt;&gt;&gt; Thanks,<br>
&gt;&gt; &gt;&gt;&gt;&gt; -Eric<br>
&gt;&gt; &gt;&gt;&gt;&gt; ------------------------------------------------------<br>
&gt;&gt; &gt;&gt;&gt;&gt; Eric E Monson<br>
&gt;&gt; &gt;&gt;&gt;&gt; Duke Visualization Technology Group<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt; On Mar 1, 2010, at 11:55 AM, Aashish Chaudhary wrote:<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt; No there is no special option required but you would have to update<br>
&gt;&gt; &gt;&gt;&gt;&gt; your<br>
&gt;&gt; &gt;&gt;&gt;&gt; paraview cvs copy as the code got into cvs last thursday.<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt; Can you update and compile again?<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt; Thanks,<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt; On Sun, Feb 28, 2010 at 2:27 PM, Pierre-Olivier Dallaire<br>
&gt;&gt; &gt;&gt;&gt;&gt; &lt;<a href="mailto:pierre-olivier.dallaire@videotron.ca">pierre-olivier.dallaire@videotron.ca</a>&gt; wrote:<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; Hi,<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; Do  we need to enable a special option in the CMakeCache.txt file in<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; order to get this feature ?<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; I compiled the CVS version on Mac and cannot access the GPU option<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; for<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; volume rendering.<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; Regards,<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; PO<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; On 2010-02-26, at 10:58 AM, Aashish Chaudhary wrote:<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; All,<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; I am pleased to announce that ParaView3 now has GPU based volume<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; rendering  from VTKEdge. Its currently in CVS and should be able to<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; make<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; into 3.8 release.<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; Currently it does not work in tile display mode but we are hoping to<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; fix<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; it in near future. Any bug reports are welcome.<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; Attached is the screen shot.<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; ~Regards,<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; --<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; | Aashish Chaudhary<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; | R&amp;D Engineer<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; | Kitware Inc.<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; | <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; &lt;Screenshot.jpg&gt;_______________________________________________<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; Visit other Kitware open-source projects at<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; Please keep messages on-topic and check the ParaView Wiki at:<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; <a href="http://paraview.org/Wiki/ParaView" target="_blank">http://paraview.org/Wiki/ParaView</a><br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; Follow this link to subscribe/unsubscribe:<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; <a href="http://www.paraview.org/mailman/listinfo/paraview" target="_blank">http://www.paraview.org/mailman/listinfo/paraview</a><br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt; --<br>
&gt;&gt; &gt;&gt;&gt;&gt; | Aashish Chaudhary<br>
&gt;&gt; &gt;&gt;&gt;&gt; | R&amp;D Engineer<br>
&gt;&gt; &gt;&gt;&gt;&gt; | Kitware Inc.<br>
&gt;&gt; &gt;&gt;&gt;&gt; | <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;&gt; &gt;&gt;&gt;&gt; _______________________________________________<br>
&gt;&gt; &gt;&gt;&gt;&gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt; Visit other Kitware open-source projects at<br>
&gt;&gt; &gt;&gt;&gt;&gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt; Please keep messages on-topic and check the ParaView Wiki at:<br>
&gt;&gt; &gt;&gt;&gt;&gt; <a href="http://paraview.org/Wiki/ParaView" target="_blank">http://paraview.org/Wiki/ParaView</a><br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt; Follow this link to subscribe/unsubscribe:<br>
&gt;&gt; &gt;&gt;&gt;&gt; <a href="http://www.paraview.org/mailman/listinfo/paraview" target="_blank">http://www.paraview.org/mailman/listinfo/paraview</a><br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt; --<br>
&gt;&gt; &gt;&gt;&gt; | Aashish Chaudhary<br>
&gt;&gt; &gt;&gt;&gt; | R&amp;D Engineer<br>
&gt;&gt; &gt;&gt;&gt; | Kitware Inc.<br>
&gt;&gt; &gt;&gt;&gt; | <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt; _______________________________________________<br>
&gt;&gt; &gt;&gt;&gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt; Visit other Kitware open-source projects at<br>
&gt;&gt; &gt;&gt;&gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt; Please keep messages on-topic and check the VTK FAQ at:<br>
&gt;&gt; &gt;&gt;&gt; <a href="http://www.vtk.org/Wiki/VTK_FAQ" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt; Follow this link to subscribe/unsubscribe:<br>
&gt;&gt; &gt;&gt;&gt; <a href="http://www.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; --<br>
&gt;&gt; &gt;&gt; François Bertel, PhD  | Kitware Inc. Suite 204<br>
&gt;&gt; &gt;&gt; 1 (518) 371 3971 x113 | 28 Corporate Drive<br>
&gt;&gt; &gt;&gt;                      | Clifton Park NY 12065, USA<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; _______________________________________________<br>
&gt;&gt; &gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Visit other Kitware open-source projects at<br>
&gt;&gt; &gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Please keep messages on-topic and check the VTK FAQ at:<br>
&gt;&gt; &gt; <a href="http://www.vtk.org/Wiki/VTK_FAQ" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Follow this link to subscribe/unsubscribe:<br>
&gt;&gt; &gt; <a href="http://www.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>
&gt;&gt; &gt;<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;&gt;<br>
&gt;&gt; Visit other Kitware open-source projects at<br>
&gt;&gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt;&gt;<br>
&gt;&gt; Please keep messages on-topic and check the VTK FAQ at:<br>
&gt;&gt; <a href="http://www.vtk.org/Wiki/VTK_FAQ" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
&gt;&gt;<br>
&gt;&gt; Follow this link to subscribe/unsubscribe:<br>
&gt;&gt; <a href="http://www.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>
&gt;<br>
&gt;<br>
</div></div></blockquote></div><br>