1 / 36

Compute-Based GPU Particle Systems Gareth Thomas Developer Technology Engineer, AMD

Compute-Based GPU Particle Systems Gareth Thomas Developer Technology Engineer, AMD. Agenda. Overview Collisions Sorting Tiled Rendering Conclusions. Overview. Why use the GPU? Highly parallel workload Free your CPU to do game code Leverage compute. Overview. Emit Simulate Sort

avi
Télécharger la présentation

Compute-Based GPU Particle Systems Gareth Thomas Developer Technology Engineer, AMD

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Compute-Based GPU Particle SystemsGareth ThomasDeveloper Technology Engineer, AMD

  2. Agenda • Overview • Collisions • Sorting • Tiled Rendering • Conclusions

  3. Overview • Why use the GPU? • Highly parallel workload • Free your CPU to do game code • Leverage compute

  4. Overview • Emit • Simulate • Sort • Rendering • Rasterization or Tiled Rendering

  5. Data Structures Particle Pool Sort List Dead List Position, Velocity, Age, Color, etc.. uint index; uint index; float distanceSq;

  6. ConsumeStructuredBuffer<uint> Emit Compute Shader Particle Pool Dead List Position, Velocity, Age, Color, etc.. Initialize Particles from Dead List uint index = g_DeadList.Consume(); uint index;

  7. AppendStructuredBuffer<uint> RWStructuredBuffer<float2> RWStructuredBuffer<> Simulate Compute Shader Particle Pool Dead List Sort List Update Particles. Add alive ones to Sort List, add dead ones to Dead List g_DeadList.Append( index ); g_SortList.IncrementCounter(); uint index; float distanceSq uint index;

  8. Collisions • Primitives • Heightfield • Voxel data • Depth buffer [Tchou11]

  9. Depth Buffer Collisions P(n+1) • Project particle into screen space • Read Z from depth buffer • Compare view-space particle position vs view-space position of Z buffer value • Use thickness value Z thickness P(n) view space

  10. Depth Buffer Collision Response • Use normal from G-buffer • Or take multiple taps a depth buffer • Watch out for depth discontinuities

  11. RWStructuredBuffer<float2> • Sort for correct alpha blending • Additive blending just saturates the effect • Bitonic sort parallelizes well on GPU Sort Compute Shader Sort List uint index; float distanceSq

  12. BitonicSort 7 3 6 8 1 4 2 5 for( subArraySize=2; subArraySize<ArraySize; subArraySize*=2) { for( compareDist=subArraySize/2; compareDist>0; compareDist/=2) { // Begin: GPU part of the sort for each element n n = selectBitonic(n, n^compareDist); // End: GPU part of the sort } }

  13. BitonicSort (Pass 1) 7 3 6 8 1 4 2 5 for( subArraySize=2; subArraySize<ArraySize; subArraySize*=2) // subArraySize == 2 { for( compareDist=subArraySize/2; compareDist>0; compareDist/=2)// compareDist== 1 { // Begin: GPU part of the sort for each element n n = selectBitonic(n, n^compareDist); // End: GPU part of the sort } }

  14. BitonicSort (Pass 2) 3 7 6 4 5 2 8 1 for( subArraySize=2; subArraySize<ArraySize; subArraySize*=2) // subArraySize == 4 { for( compareDist=subArraySize/2; compareDist>0; compareDist/=2)// compareDist== 2 { // Begin: GPU part of the sort for each element n n = selectBitonic(n, n^compareDist); // End: GPU part of the sort } }

  15. BitonicSort (Pass 3) 3 6 8 7 5 4 1 2 for( subArraySize=2; subArraySize<ArraySize; subArraySize*=2) // subArraySize == 4 { for( compareDist=subArraySize/2; compareDist>0; compareDist/=2)// compareDist== 1 { // Begin: GPU part of the sort for each element n n = selectBitonic(n, n^compareDist); // End: GPU part of the sort } }

  16. BitonicSort (Pass 4) 3 6 7 8 5 4 2 1 for( subArraySize=2; subArraySize<ArraySize; subArraySize*=2) // subArraySize == 8 { for( compareDist=subArraySize/2; compareDist>0; compareDist/=2)// compareDist== 4 { // Begin: GPU part of the sort for each element n n = selectBitonic(n, n^compareDist); // End: GPU part of the sort } }

  17. BitonicSort (Pass 5) 3 4 2 1 5 6 7 8 for( subArraySize=2; subArraySize<ArraySize; subArraySize*=2) // subArraySize == 8 { for( compareDist=subArraySize/2; compareDist>0; compareDist/=2)// compareDist== 2 { // Begin: GPU part of the sort for each element n n = selectBitonic(n, n^compareDist); // End: GPU part of the sort } }

  18. BitonicSort (Pass 6) 2 1 3 4 5 6 7 8 for( subArraySize=2; subArraySize<ArraySize; subArraySize*=2) // subArraySize == 8 { for( compareDist=subArraySize/2; compareDist>0; compareDist/=2)// compareDist== 1 { // Begin: GPU part of the sort for each element n n = selectBitonic(n, n^compareDist); // End: GPU part of the sort } }

  19. Vertex Shader Geometry Shader Pixel Shader Sort List Particle Pool Texturing and tinting. Depth fade for soft particles. Read Particle Buffer Expand one point to four. Billboard in view space.

  20. Sort List Index Buffer Vertex Shader Pixel Shader Particle Pool Texturing and tinting. Depth fade for soft particles. Read particle buffer and billboard in view space

  21. Rasterization • DrawIndexedIndirectInstanced() or DrawIndirectInstanced() • VertexId = particle index (or VertexId/4 for VS billboarding) • 1 instance • Heavy overdraw on large particles – restricts game design • Fit polygon billboard around texture [Persson09] • Render to half size buffer [Cantlay07] • Sorting issues • Loss of fidelity

  22. Tiled Rendering • Inspired by Forward+ [Harada12] • Screen-space binning of particles instead of lights • Per-tile • Cull & Sort • Per pixel/thread • Evaluate color of each particle • Blend together • Composite back onto scene

  23. Tiled lightparticle culling 2 1 3 [1] [1,2,3] [2,3]

  24. Tiled particle culling Tile0 Tile1 Tile2 Tile3 • Divide screen into tiles • Fit asymmetric frustum around each tile

  25. Tiled particle culling

  26. Thread Group View • numthreads[32,32,1] • Culling 1024 particles in parallel • Write visible indices to TGSM

  27. Per Tile Bitonic Sort • Because each thread adds a visible particle • Particles are added to TGSM in arbitrary order • Need to sort • Only sorting particles in tile rather than global list

  28. Tiled Rendering (1 thread = 1 pixel) • Set accumcolor to float4( 0, 0, 0, 0 ) • For each particle in tile (back to front) • Evaluate particle contribution • Radius check • Texture lookup • Optional normal generation and lighting • Manually blend • color = ( srcA x srcCol ) + ( invSrcA x destCol ) • alpha = srcA + ( invSrcA x destA ) • Write to screen size UAV

  29. Tiled Rendering, improved! • Set accumcolor to float4( 0, 0, 0, 0 ) • For each particle in tile (front to back) • Evaluate particle contribution • Manually blend [Bavoil08] • color = ( invDestA x srcA x srcCol ) + destCol • alpha = srcA + ( invSrcA x destA) • if ( accum alpha > threshold ) accum alpha = 1 and bail • Write to screen size UAV

  30. Coarse Culling • Bin particles into 8x8 • UAV0 for indices • Array split into sections using offsets • UAV1 for storing particle count per bin • 1 element per bin • Use InterlockedAdd() to bump counter • For each alive particle • For each bin • Test particle against bin’s frustum planes • Bump counter in UAV1 to get slot to write to • Add particle index to UAV0

  31. Demo Demo with full source available soon

  32. Performance Results *AMD Radeon R9 290X @ 1080p

  33. Performance Results *R9 290X @ 1080p

  34. Conclusions • Leverage compute for particle simulations • Depth buffer collisions • Bitonic sort for correct blending • Tiled rendering • Faster than rasterization • Great for combating heavy overdraw • More predictable behavior • Future work • Volume tracing • Add arbitrary geometry for OIT

  35. Questions? Demo with full source available soon http://developer.amd.com/tools/graphics-development/amd-radeon-sdk/

  36. References • [Tchou11] Chris Tchou, “Halo Reach Effects Tech”, GDC 2011 • [Persson09] Emil Persson, http://www.humus.name/index.php?page=News&ID=266 • [Cantlay07] Iain Cantlay, “High-Speed, Off-Screen Particles”, GPU Gems 3 2007 • [Harada12] Takahiro Harada et al, “Forward+: Bringing Deferred Lighting to the Next Level”, Short Papers, Eurographics2012 • [Bavoil08] Louis Bavoil et al, “Order Independent Transparency with Dual Depth Peeling”, 2008

More Related