porting maxwell to the gpu
play

Porting Maxwell to the GPU Top Challenges Juan Caada Head of - PowerPoint PPT Presentation

Porting Maxwell to the GPU Top Challenges Juan Caada Head of Visualization Next Limit Technologies Agenda - Maxwell overview - Why porting to the GPU was challenging - Performance considerations - Using the CPU to improve the GPU engine


  1. Porting Maxwell to the GPU Top Challenges Juan Cañada Head of Visualization Next Limit Technologies

  2. Agenda - Maxwell overview - Why porting to the GPU was challenging - Performance considerations - Using the CPU to improve the GPU engine - Summary

  3. Agenda - Maxwell overview - Why porting to the GPU was challenging - Performance considerations - Using the CPU to improve the GPU engine - Summary

  4. Maxwell Overview Visualization Fluids Physics

  5. Maxwell Overview MAXWELL • First physically based render in the market (2004) • Ground-truth reference render • Predictive rendering tool • Light analysis tool

  6. Maxwell in use - Animation & VFX - Architecture - Industrial Design - Science - Others

  7. Maxwell in use - Animation & VFX - Architecture - Industrial Design - Science - Others

  8. Maxwell in use - Animation & VFX - Architecture - Industrial Design - Science - Others

  9. Maxwell in use - Animation & VFX - Architecture - Industrial Design - Science - Others

  10. Maxwell in use - Animation & VFX - Architecture - Industrial Design - Science - Others

  11. Agenda - Maxwell Render overview - Why porting to the GPU was challenging - Performance considerations - Using the CPU to improve the GPU engine - Summary

  12. Challenges • Keep pixel accuracy • Use GPU for predictive rendering • Improve performance • Spectral, unbiased, accurate PBR • Support CPU & GPU resuming & merging • …

  13. Predictive Rendering

  14. Fast ☺ Correct Correct  Fast

  15. Agenda - Maxwell overview - Why porting to the GPU was challenging - Performance considerations - Using the CPU to improve the GPU engine - Summary

  16. Maxwell GPU Architecture Geometry Voxelization Ray Generation Direct Light GPU Thread Ray Ray Sorting Mapping Tracing Visibility Test Materials TM? Evaluation

  17. GPU Maxwell Geometry Voxelization Ray Generation Direct Light GPU Thread Ray Ray Sorting Mapping Tracing Visibility Test Materials TM? Evaluation

  18. GPU Maxwell • Voxelization • Same Voxelization system as the CPU render • Currently performed in CPU just once • BVH • Binary tree (each node has 2 childs) • Coherent traversal + All threads fetch same amount of data / node + Increase coherence in performance - Trees become bigger

  19. GPU Maxwell Geometry Voxelization Ray Generation Direct Light GPU Thread Ray Ray Sorting Mapping Tracing Visibility Test Materials TM? Evaluation

  20. GPU Maxwell Geometry Voxelization Ray Generation Direct Light GPU Thread Ray Ray Sorting Mapping Tracing Visibility Test Materials TM? Evaluation

  21. Morton Curve GPU Maxwell • Thread Mapping • Module that manages THREAD / PIXEL mapping • Sampling Level (SL) • Low Morton Curve • Medium Balances SPP • High Uses Variance

  22. GPU Maxwell Geometry Voxelization Ray Generation Direct Light GPU Thread Ray Ray Sorting Mapping Tracing Visibility Test Materials TM? Evaluation

  23. GPU Maxwell Geometry Voxelization Ray Generation Direct Light GPU Thread Ray Ray Sorting Mapping Tracing Visibility Test Materials TM? Evaluation

  24. GPU Maxwell • Ray Generation Module • Primary Rays (PR) • Rays shot from camera • High degree of coherence • Two neighboring rays will hit nearby similar objects • Secondary Rays (SR) • Rays shot from surfaces • No coherence • Two neighbouring rays might hit different objects

  25. GPU Maxwell • Ray Generation Module • Thread blocks with just PR • High degree of coherence • Best performance situation • Thread blocks with just SR • All will take much more time than PR • The worst SR will drive the performance • Thread blocks with PR and SR • SR will hurt PR performance

  26. GPU Maxwell • Ray Generation Module • How do we handle it? • GPU Ray sorting by Ray Type PR 0 PR 1 SR 0 PR 2 SR 1 PR 3 SR 2 PR 4

  27. GPU Maxwell • Ray Generation Module • How do we handle it? • GPU Ray sorting by Ray Type PR 0 PR 1 SR 0 PR 2 SR 1 PR 3 SR 2 PR 4 PR 0 PR 1 PR 2 PR 3 PR 4 SR 0 SR 1 SR 2

  28. GPU Maxwell • Ray Generation Module • How do we handle it? • GPU Ray sorting by Ray Type • Sorting is really fast • Simple, yet powerful Do it just after 2 nd bounce • • Not needed for PR • Performance boost is scene dependant

  29. GPU Maxwell • Ray Generation Module • How do we handle it? • GPU Ray sorting by Ray Type • Considerations • Not useful for medium to small-res images • Use an indirection buffer • Cleaner code • Avoids moving global data • Much better performance

  30. GPU Maxwell Geometry Voxelization Ray Generation Direct Light GPU Thread Ray Ray Sorting Mapping Tracing Visibility Test Materials TM? Evaluation

  31. GPU Maxwell Geometry Voxelization Ray Generation Direct Light GPU Thread Ray Ray Sorting Mapping Tracing Visibility Test Materials TM? Evaluation

  32. GPU Maxwell • Ray Tracing Module • GPU architecture dependent kernels • Fermi, Kepler, Maxwell • Use every architecture strengths

  33. GPU Maxwell Geometry Voxelization Ray Generation Direct Light GPU Thread Ray Ray Sorting Mapping Tracing Visibility Test Materials TM? Evaluation

  34. GPU Maxwell Render Geometry Voxelization Ray Generation Direct Light GPU Thread Ray Ray Sorting Mapping Tracing Visibility Test Materials TM? Evaluation

  35. GPU Maxwell Direct Light Module 1. Sample scene emitters at each path node • Two strategies • Sample 1 random emitter / sample • Sample all emitters / sample 2. Visibility test • Trace shadow rays • Incoherent rays Ray sorting does not help 3. Many other optimizations

  36. GPU Maxwell Geometry Voxelization Ray Generation Direct Light GPU Thread Ray Ray Sorting Mapping Tracing Visibility Test Materials TM? Evaluation

  37. GPU Maxwell Geometry Voxelization Ray Generation Direct Light GPU Thread Ray Ray Sorting Mapping Tracing Visibility Test Materials TM? Evaluation

  38. GPU Maxwell • Materials Evaluation Module • Maxwell materials are complex • Many layers and many BSDFs / layer  very generic

  39. GPU Maxwell Materials Evaluation Module • Bbig kernels are harmful • Samples evaluating different materials • Access different data • Execute different code

  40. GPU Maxwell • Materials Evaluation Module • Materials Group Queue System (MGQS) 1. Every material is assigned a Material Group ID 2. Queue system for Material Groups (MG) 3. Every queue has specific kernels • + Avoid big kernels 4. Samples are queued to the corresponding MG Queue 5. All samples evaluating the same MG are executed together • + Increased coherence in execution time • Increased coherence in data access +

  41. GPU Maxwell • Materials Evaluation Module • Materials Group Queue System (MGQS) 1. Every material is assigned a Material Group ID 2. Queue system for Material Groups (MG) 3. Every queue has specific kernels • + Avoid big kernels 4. Samples are queued to the corresponding MG Queue 5. All samples evaluating the same MG are executed together • + Increased coherence in execution time • Increased coherence in data access +

  42. GPU Maxwell Render • Materials Evaluation Module • Materials Group Queue System (MGQS) 1. Every material is assigned a Material Group ID 2. Queue system for Material Groups (MG) 3. Every queue has specific kernels • + Avoid big kernels 4. Samples are queued to the corresponding MG Queue 5. All samples evaluating the same MG are executed together • + Increased coherence in execution time • Increased coherence in data access +

  43. GPU Maxwell • Materials Evaluation Module • Materials Group Queue System (MGQS) 1. Every material is assigned a Material Group ID 2. Queue system for Material Groups (MG) 3. Every queue has specific kernels (Avoid big kernels) 4. Samples are queued to the corresponding MG Queue 5. All samples evaluating the same MG are executed together + • Increased coherence in execution time + • Increased coherence in data access

  44. GPU Maxwell • Materials Evaluation Module • Materials Group Queue System (MGQS) 1. Every material is assigned a Material Group ID 2. Queue system for Material Groups (MG) 3. Every queue has specific kernels (Avoid big kernels) 4. Samples are queued to the corresponding MG Queue 5. All samples evaluating the same MG are executed together • Increased coherence in execution time • Increased coherence in data access

  45. GPU Maxwell • Materials Evaluation Module • Materials Group Queue System (MGQS) 1. Every material is assigned a Material Group ID 2. Queue system for Material Groups (MG) 3. Every queue has specific kernels (Avoid big kernels) 4. Samples are queued to the corresponding MG Queue 5. All samples evaluating the same MG are executed together • Increased coherence in execution time • Increased coherence in data access

  46. GPU Maxwell Geometry Voxelization Ray Generation Direct Light GPU Thread Ray Ray Sorting Mapping Tracing Visibility Test Materials TM? Evaluation

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend