<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>GPGPU &#187; Tag: Graphics :: GPGPU.org</title>
	<atom:link href="http://gpgpu.org/tag/graphics/feed" rel="self" type="application/rss+xml" />
	<link>http://gpgpu.org</link>
	<description>General-Purpose Computation on Graphics Hardware</description>
	<lastBuildDate>Mon, 06 Feb 2012 04:59:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Displacement Mapping on the GPU: State of the Art</title>
		<link>http://gpgpu.org/2008/01/14/displacement-mapping-on-the-gpu-state-of-the-art</link>
		<comments>http://gpgpu.org/2008/01/14/displacement-mapping-on-the-gpu-state-of-the-art#comments</comments>
		<pubDate>Sun, 13 Jan 2008 23:52:29 +0000</pubDate>
		<dc:creator>Mark Harris</dc:creator>
				<category><![CDATA[Research]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Papers]]></category>

		<guid isPermaLink="false">http://gpgpu.site/?p=310</guid>
		<description><![CDATA[This paper reviews the latest developments of displacement mapping algorithms implemented on the vertex, geometry, and fragment shaders of graphics cards. Displacement mapping algorithms are classified as per-vertex and per-pixel methods. Per-pixel approaches are further categorized as safe algorithms that aim at correct solutions in all cases, to unsafe techniques that may fail in extreme [...]]]></description>
			<content:encoded><![CDATA[<p>This paper reviews the latest developments of displacement mapping algorithms implemented on the vertex, geometry, and fragment shaders of graphics cards. Displacement mapping algorithms are classified as per-vertex and per-pixel methods. Per-pixel approaches are further categorized as safe algorithms that aim at correct solutions in all cases, to unsafe techniques that may fail in extreme cases but are usually much faster than safe algorithms, and to combined methods that exploit the robustness of safe and the speed of unsafe techniques. The paper discusses the possible roles of vertex, geometry, and fragment shaders to implement these algorithms. Then the particular GPU based bump, parallax, relief, sphere, horizon mapping, cone stepping, local ray tracing, pyramidal and view-dependent displacement mapping methods, as well as their numerous variations are reviewed providing also implementation details of the shader programs. The paper presents these methods using uniform notation and also points out when different authors referred to similar concepts differently. In addition to basic displacement mapping, self-shadowing and silhouette processing are also reviewed. Based on the authors&#8217; experiences gained having re-implemented these methods, their performance and quality are compared, and the advantages and disadvantages are fairly presented. (<a title="Displacement Mapping on the GPU STAR" href="http://www.iit.bme.hu/%7Eszirmay/egdis_link.htm" target="_blank">Displacement Mapping on the GPU &#8211; State of the Art </a> László Szirmay-Kalos and Tamás Umenhoffer. <em>Computer Graphics Forum. 2008.</em>)</p>
]]></content:encoded>
			<wfw:commentRss>http://gpgpu.org/2008/01/14/displacement-mapping-on-the-gpu-state-of-the-art/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interactive Depth of Field Using Simulated Diffusion on a GPU</title>
		<link>http://gpgpu.org/2007/01/18/interactive-depth-of-field-using-simulated-diffusion-on-a-gpu</link>
		<comments>http://gpgpu.org/2007/01/18/interactive-depth-of-field-using-simulated-diffusion-on-a-gpu#comments</comments>
		<pubDate>Thu, 18 Jan 2007 13:41:00 +0000</pubDate>
		<dc:creator>Mark Harris</dc:creator>
				<category><![CDATA[Research]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Image Processing]]></category>
		<category><![CDATA[Papers]]></category>
		<category><![CDATA[Parallel Algorithms]]></category>

		<guid isPermaLink="false">http://www.gpgpu.org/cgi-bin/blosxom.cgi/AdvancedRendering/kassDOF06.html</guid>
		<description><![CDATA[This Pixar Animation Studios Technical Report by Kass, Lefohn, and Owens describes a GPU-based data-parallel direct tridiagonal linear solver. To the authors&#8217; knowledge, this is the first reported direct, linear-time tridiagonal GPU solver. The solver is used to implement a new heat-diffusion-based depth-of-field preview algorithm; and the paper describes solving thousands of tridiagonal systems, each [...]]]></description>
			<content:encoded><![CDATA[<p>This <a href="http://graphics.pixar.com/" target="_blank">Pixar Animation Studios</a> Technical Report by <a href="http://graphics.pixar.com/indexAuthorKass.html" title="Michael Kass" target="_blank">Kass</a>, <a href="http://graphics.cs.ucdavis.edu/~lefohn/" title="Aaron Lefohn" target="_blank">Lefohn</a>, and <a href="http://www.ece.ucdavis.edu/~jowens/" title="John Owens" target="_blank">Owens</a> describes a GPU-based data-parallel direct tridiagonal linear solver. To the authors&#8217; knowledge, this is the first reported direct, linear-time tridiagonal GPU solver. The solver is used to implement a new heat-diffusion-based depth-of-field preview algorithm; and the paper describes solving thousands of tridiagonal systems, each with hundreds of elements, on the GPU at interactive rendering rates. The alternating direction implicit solution gives rise to separable spatially varying recursive (infinite-impulse response, IIR) filters that can compute large-kernel convolutions in constant time per pixel while respecting the boundaries between in-focus and out-of-focus objects. Recursive filters have traditionally been viewed as problematic for GPUs, but using the well-established method of cyclic reduction of tridiagonal systems, the authors are able to parallelize the computation and implement an efficient solution in terms of GPGPU primitives. (<a href="http://graphics.pixar.com/indexAuthorKass.html" title="Michael Kass" target="_blank">Michael Kass</a>, <a href="http://graphics.cs.ucdavis.edu/~lefohn/" title="Aaron Lefohn" target="_blank">Aaron Lefohn</a>, and <a href="http://www.ece.ucdavis.edu/~jowens/" title="John Owens" target="_blank">John Owens</a>. <a href="http://graphics.pixar.com/DepthOfField/index.html" title="Interactive Depth of Field Using Simulated Diffusion on the GPU">Interactive Depth of Field Using Simulated Diffusion on the GPU</a>, Technical Report #06-01, Pixar Animation Studios, January 2006.)</p>
]]></content:encoded>
			<wfw:commentRss>http://gpgpu.org/2007/01/18/interactive-depth-of-field-using-simulated-diffusion-on-a-gpu/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GPUGI: Global Illumination Effects on the GPU</title>
		<link>http://gpgpu.org/2006/12/13/gpugi-global-illumination-effects-on-the-gpu</link>
		<comments>http://gpgpu.org/2006/12/13/gpugi-global-illumination-effects-on-the-gpu#comments</comments>
		<pubDate>Wed, 13 Dec 2006 12:34:00 +0000</pubDate>
		<dc:creator>Mark Harris</dc:creator>
				<category><![CDATA[Research]]></category>
		<category><![CDATA[Global Illumination]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Papers]]></category>

		<guid isPermaLink="false">http://www.gpgpu.org/cgi-bin/blosxom.cgi/AdvancedRendering/GlobalIllumination/laszloGPUGI06.html</guid>
		<description><![CDATA[This tutorial explains how global illumination rendering methods can be implemented on Shader Model 3.0 GPUs. These algorithms do not follow the conventional local illumination model of DirectX/OpenGL pipelines, but require global geometric or illumination information when shading a point. In addition to the theory and state of the art of these approaches, the tutorial [...]]]></description>
			<content:encoded><![CDATA[<p>This tutorial explains how global illumination rendering methods can be implemented on Shader Model 3.0 GPUs. These algorithms do not follow the conventional local illumination model of DirectX/OpenGL pipelines, but require global geometric or illumination information when shading a point. In addition to the theory and state of the art of these approaches, the tutorial goes into the details of a few algorithms, including mirror reflection, refraction, caustics, diffuse/glossy indirect illumination, precomputation-aided global illumination for surface and volumetric models, obscurances and tone mapping, also giving their GPU implementation in HLSL or Cg language. (Laszlo Szirmay-Kalos, Laszlo Scecsi, Mateu Sbert:<a href="http://www.iit.bme.hu/~szirmay/gpugi_link.htm" target="_blank"> GPUGI: Global Illumination Effects on the GPU</a>. Eurographics 2006 Tutorial.)</p>
]]></content:encoded>
			<wfw:commentRss>http://gpgpu.org/2006/12/13/gpugi-global-illumination-effects-on-the-gpu/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenGL FBO Class version 1.5</title>
		<link>http://gpgpu.org/2006/11/16/opengl-fbo-class-version-15</link>
		<comments>http://gpgpu.org/2006/11/16/opengl-fbo-class-version-15#comments</comments>
		<pubDate>Thu, 16 Nov 2006 00:06:00 +0000</pubDate>
		<dc:creator>Mark Harris</dc:creator>
				<category><![CDATA[Developer Resources]]></category>
		<category><![CDATA[APIs]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[OpenGL]]></category>

		<guid isPermaLink="false">http://www.gpgpu.org/cgi-bin/blosxom.cgi/Tools/lefohnFBO1.5.html</guid>
		<description><![CDATA[Aaron Lefohn announces the release of version 1.5 of his OpenGL FBO Class. This release includes the following changes: Updated enumerations in error checking to match current FBO specification. Fixes compilation errors with current drivers. Small API change to AttachTexture to better support attaching multiple textures with a single entry point. Added FBO Manager for [...]]]></description>
			<content:encoded><![CDATA[<p>Aaron Lefohn announces the release of version 1.5 of his OpenGL FBO Class. This release includes the following changes:</p>
<ol>
<li>Updated enumerations in error checking to match current FBO specification.<br />
Fixes compilation errors with current drivers.</li>
<li>Small API change to AttachTexture to better support attaching multiple<br />
textures with a single entry point.</li>
<li>Added FBO Manager for managing a pool of FBOs based on width, height, and<br />
format. Manager is configurable to use user-defined management policies/keys.</li>
</ol>
<p>(Available on <a href="http://sourceforge.net/project/showfiles.php?group_id=104004&amp;package_id=158526&amp;release_id=463385" title="Sourceforge" target="_blank">sourceforge</a>.)</p>
]]></content:encoded>
			<wfw:commentRss>http://gpgpu.org/2006/11/16/opengl-fbo-class-version-15/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Radiosity on Graphics Hardware</title>
		<link>http://gpgpu.org/2003/08/04/radiosity-on-graphics-hardware</link>
		<comments>http://gpgpu.org/2003/08/04/radiosity-on-graphics-hardware#comments</comments>
		<pubDate>Mon, 04 Aug 2003 03:50:00 +0000</pubDate>
		<dc:creator>Mark Harris</dc:creator>
				<category><![CDATA[Research]]></category>
		<category><![CDATA[Global Illumination]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Papers]]></category>

		<guid isPermaLink="false">http://www.gpgpu.org/cgi-bin/blosxom.cgi/AdvancedRendering/GlobalIllumination/coombeRadiosityTR.html</guid>
		<description><![CDATA[This report by Coombe et al. describes a technique for computing radiosity, including an adaptive subdivision of the model, using graphics hardware. The technique uses floating point textures and fragment programs to perform progressive refinement using a novel implementation of hemicube radiosity on the GPU. (Radiosity on Graphics Hardware. Greg Coombe, Mark J. Harris, Anselmo [...]]]></description>
			<content:encoded><![CDATA[<p>This report by <a href="http://www.cs.unc.edu/~coombe">Coombe</a> et al. describes a technique for computing radiosity, including an adaptive subdivision of the model, using graphics hardware. The technique uses floating point textures and fragment programs to perform progressive refinement using a novel implementation of hemicube radiosity on the GPU. (<a href="http://www.cs.unc.edu/~coombe/research/radiosity/">Radiosity on Graphics Hardware</a>. Greg Coombe, Mark J. Harris, Anselmo Lastra.  UNC TR03-020. June, 2003.)</p>
]]></content:encoded>
			<wfw:commentRss>http://gpgpu.org/2003/08/04/radiosity-on-graphics-hardware/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Photon Mapping on Programmable Graphics Hardware</title>
		<link>http://gpgpu.org/2003/06/08/photon-mapping-on-programmable-graphics-hardware</link>
		<comments>http://gpgpu.org/2003/06/08/photon-mapping-on-programmable-graphics-hardware#comments</comments>
		<pubDate>Sun, 08 Jun 2003 00:07:00 +0000</pubDate>
		<dc:creator>Mark Harris</dc:creator>
				<category><![CDATA[Research]]></category>
		<category><![CDATA[Global Illumination]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Papers]]></category>

		<guid isPermaLink="false">http://www.gpgpu.org/cgi-bin/blosxom.cgi/AdvancedRendering/GlobalIllumination/purcellPhotonMapGH2003.html</guid>
		<description><![CDATA[This paper by Purcell et al. presents a photon mapping algorithm that runs entirely on the GPU. The paper presents details for tracing photons, building the photon map, and computing the radiance estimate at each pixel using a k-nearest neighbor search.(Photon Mapping on Programmable Graphics Hardware. Timothy J. Purcell, Craig Donner, Mike Cammarano, Henrik Wann [...]]]></description>
			<content:encoded><![CDATA[<p>This paper by <a href="http://graphics.stanford.edu/~tpurcell/" title="Tim Purcell" target="_blank">Purcell</a> et al. presents a photon mapping algorithm that runs entirely on the GPU.  The paper presents details for tracing photons, building the photon map, and computing the radiance estimate at each pixel using a k-nearest neighbor search.(<a href="http://graphics.stanford.edu/papers/photongfx/" title="Link to paper" target="_blank">Photon Mapping on Programmable Graphics Hardware</a>.  Timothy J. Purcell, Craig Donner, Mike Cammarano, Henrik Wann Jensen, and Pat Hanrahan.  Proceedings of Graphics Hardware 2003, July 2003.)</p>
]]></content:encoded>
			<wfw:commentRss>http://gpgpu.org/2003/06/08/photon-mapping-on-programmable-graphics-hardware/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GPU Algorithms for Radiosity and Subsurface Scattering</title>
		<link>http://gpgpu.org/2003/06/08/gpu-algorithms-for-radiosity-and-subsurface-scattering</link>
		<comments>http://gpgpu.org/2003/06/08/gpu-algorithms-for-radiosity-and-subsurface-scattering#comments</comments>
		<pubDate>Sun, 08 Jun 2003 00:03:00 +0000</pubDate>
		<dc:creator>Mark Harris</dc:creator>
				<category><![CDATA[Research]]></category>
		<category><![CDATA[Global Illumination]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Papers]]></category>

		<guid isPermaLink="false">http://www.gpgpu.org/cgi-bin/blosxom.cgi/AdvancedRendering/GlobalIllumination/carrSubsurfaceGH2003.html</guid>
		<description><![CDATA[This paper by Carr et al. describes a method for computing subsurface scattering on the GPU. They use a multi-resolution meshed atlas and modern GPU programmability to devise a real-time GPU algorithm that can render semi-transparent objects with diffuse subsurface-scattered illumination under dynamic lighting and viewing conditions. (GPU Algorithms for Radiosity and Subsurface Scattering. Nathan [...]]]></description>
			<content:encoded><![CDATA[<p>This paper by <a href="http://graphics.cs.uiuc.edu/~nacarr/" title="Nate Carr" target="_blank">Carr</a> et al. describes a method for computing subsurface scattering on the GPU.  They use a multi-resolution meshed atlas and modern GPU programmability to devise a real-time GPU algorithm that can render semi-transparent objects with diffuse subsurface-scattered illumination under dynamic lighting and viewing conditions. (<a href="http://graphics.cs.uiuc.edu/~nacarr/publications.htm" title="Link to paper" target="_blank">GPU Algorithms for Radiosity and Subsurface Scattering</a>.  Nathan A. Carr, Jesse D. Hall, and John C. Hart.  Proceedings of Graphics Hardware 2003, July 2003.)</p>
]]></content:encoded>
			<wfw:commentRss>http://gpgpu.org/2003/06/08/gpu-algorithms-for-radiosity-and-subsurface-scattering/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nonlinear Optimization Framework for Image-Based Modeling on Programmable Graphics Hardware</title>
		<link>http://gpgpu.org/2003/05/28/nonlinear-optimization-framework-for-image-based-modeling-on-programmable-graphics-hardware</link>
		<comments>http://gpgpu.org/2003/05/28/nonlinear-optimization-framework-for-image-based-modeling-on-programmable-graphics-hardware#comments</comments>
		<pubDate>Wed, 28 May 2003 01:46:00 +0000</pubDate>
		<dc:creator>Mark Harris</dc:creator>
				<category><![CDATA[Research]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Image-Based Modeling]]></category>
		<category><![CDATA[Nonlinear Optimization]]></category>
		<category><![CDATA[Papers]]></category>

		<guid isPermaLink="false">http://www.gpgpu.org/cgi-bin/blosxom.cgi/AdvancedRendering/Image-BasedModeling&#038;Rendering/hilleslandNonlinearOpt.html</guid>
		<description><![CDATA[This SIGGRAPH 2003 paper by Karl Hillesland, Sergey Molinov, and Radek Grzeszczuk casts nonlinear optimization as a data streaming process for computation on GPUs. The authors apply this approach to two distinct image-based modeling problems: light field mapping approximation and fitting the Lafortune model to spatial BRDFs. (Nonlinear Optimization Framework for Image-Based Modeling on Programmable [...]]]></description>
			<content:encoded><![CDATA[<p>This SIGGRAPH 2003 paper by <a href="http://www.cs.unc.edu/~khillesl" title="Karl Hillesland" target="_blank">Karl Hillesland</a>, Sergey Molinov, and Radek Grzeszczuk casts nonlinear optimization as a data streaming process for computation on GPUs.  The authors apply this approach to two distinct image-based modeling problems: light field mapping approximation and fitting the Lafortune model to spatial BRDFs. (<a href="http://www.cs.unc.edu/~khillesl/nlopt/index.html" title="Link to paper" target="_blank">Nonlinear Optimization Framework for Image-Based Modeling on Programmable Graphics Hardware</a>.  Karl E. Hillesland, Sergey Molinov, and Radek Grzeszczuk.  To appear in the proceedings of SIGGRAPH 2003.)</p>
]]></content:encoded>
			<wfw:commentRss>http://gpgpu.org/2003/05/28/nonlinear-optimization-framework-for-image-based-modeling-on-programmable-graphics-hardware/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sparse Matrix Solvers on the GPU: Conjugate Gradients and Multigrid</title>
		<link>http://gpgpu.org/2003/04/18/sparse-matrix-solvers-on-the-gpu-conjugate-gradients-and-multigrid</link>
		<comments>http://gpgpu.org/2003/04/18/sparse-matrix-solvers-on-the-gpu-conjugate-gradients-and-multigrid#comments</comments>
		<pubDate>Fri, 18 Apr 2003 22:15:00 +0000</pubDate>
		<dc:creator>Mark Harris</dc:creator>
				<category><![CDATA[Research]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Linear Algebra]]></category>
		<category><![CDATA[Papers]]></category>
		<category><![CDATA[Physics Simulation]]></category>

		<guid isPermaLink="false">http://www.gpgpu.org/cgi-bin/blosxom.cgi/ScientificComputing/bolzGPUSim.html</guid>
		<description><![CDATA[This paper by Bolz et al. of Cal Tech shows two basic, broadly useful, computational kernels implemented on GPUs: a sparse matrix conjugate gradient solver, and a regular-grid multigrid solver. The paper demonstrates a prototype implementation on NVIDIA&#8217;s GeForce FX, using geometric flow (cube smoothing movie, 3D photography scan denoising movie) and fluid simulation (particle [...]]]></description>
			<content:encoded><![CDATA[<p>This paper by Bolz <em>et al.</em> of Cal Tech shows two basic, broadly useful, computational kernels implemented on GPUs: a sparse matrix conjugate gradient solver, and a regular-grid multigrid solver. The paper demonstrates a prototype implementation on NVIDIA&#8217;s GeForce FX, using geometric flow (<a title="Cube Smoothing Movie" href="http://www.multires.caltech.edu/pubs/CubeSmoothing.mpg" target="_blank">cube smoothing movie</a>, <a title="3D photography scan denoising movie" href="http://www.multires.caltech.edu/pubs/ScanSmoothing.mpg" target="_blank">3D photography scan denoising movie</a>) and fluid simulation (<a title="Particle Advection Movie" href="http://www.multires.caltech.edu/pubs/fluidflow.mpg" target="_blank">particle advection movie</a>) as application examples. (<a title="Link to paper" href="http://www.multires.caltech.edu/pubs/GPUSim.pdf" target="_blank">Sparse Matrix Solvers on the GPU: Conjugate Gradients and Multigrid</a>. Jeff Bolz, Ian Farmer, Eitan Grinspun and Peter Schröder.  To appear in the proceedings of SIGGRAPH 2003.)</p>
]]></content:encoded>
			<wfw:commentRss>http://gpgpu.org/2003/04/18/sparse-matrix-solvers-on-the-gpu-conjugate-gradients-and-multigrid/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.multires.caltech.edu/pubs/fluidflow.mpg" length="5212829" type="video/mpeg" />
<enclosure url="http://www.multires.caltech.edu/pubs/ScanSmoothing.mpg" length="1448801" type="video/mpeg" />
		</item>
		<item>
		<title>General Mathematics in Graphics Hardware</title>
		<link>http://gpgpu.org/2002/11/14/general-mathematics-in-graphics-hardware</link>
		<comments>http://gpgpu.org/2002/11/14/general-mathematics-in-graphics-hardware#comments</comments>
		<pubDate>Thu, 14 Nov 2002 20:00:00 +0000</pubDate>
		<dc:creator>Mark Harris</dc:creator>
				<category><![CDATA[Research]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Papers]]></category>

		<guid isPermaLink="false">http://www.gpgpu.org/cgi-bin/blosxom.cgi/ScientificComputing/trendallGeneralMathematics.html</guid>
		<description><![CDATA[Chris Trendall and James Stewart of the University of Toronto explore the mathematical functionality available in graphics hardware by using it to perform a non-trivial calculation. (General calculations using graphics hardware, with application to interactive caustics. Chris Trendall and James Stewart. In Proceedings of Eurographics Workshop on Rendering. 2000.)]]></description>
			<content:encoded><![CDATA[<p>Chris Trendall and James Stewart of the University of Toronto explore the mathematical functionality available in graphics hardware by using it to perform a non-trivial calculation. (<a href="http://www.dgp.utoronto.ca/~trendall/research/msc2k/index.html">General calculations using graphics hardware, with application to interactive caustics</a>.  Chris Trendall and James Stewart. In Proceedings of Eurographics Workshop on Rendering. 2000.)</p>
]]></content:encoded>
			<wfw:commentRss>http://gpgpu.org/2002/11/14/general-mathematics-in-graphics-hardware/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

