SlideShare a Scribd company logo
1 of 33
Download to read offline
GPGPU ALGORITHMS IN GAMES
How Heterogeneous Systems Architecture can be
leveraged to optimize algorithms in video games
Matthijs De Smedt
Nixxes Software B.V.
Lead Graphics Programmer
CONTENTS


 A short introduction
 Current usage of GPGPU in games
 Heterogeneous Systems Architecture
 Examples made possible by HSA




 | HSA Algorithms in Games | June 13th, 2012
INTRODUCTION
VIDEOGAMES


 Games are near real-time simulations
                                                       CPU
 Response time is key                                        Input
 Most systems run in sync with the output frequency
   – Rendering 60 frames per second
   – Allows for 16ms of processing time                      Simulate
 Framerate is limited either by:
   – GPU
                                                             Render
   – CPU
   – Display (VSync)

                                                       GPU
                                                             Render



 | HSA Algorithms in Games | June 13th, 2012
HARDWARE


 Typical hardware target for PC games:
  – One multicore CPU
  – One GPU
 Multiple GPUs: CrossFire
  – Transparent to the application
  – Driver alternates frames between GPUs
 GPUs are becoming more general purpose:
  – General Purpose GPU algorithms (GPGPU)




                                               CrossFire




 | HSA Algorithms in Games | June 13th, 2012
GPGPU IN GAMES
INTRODUCTION TO GPGPU


 Rendering is a sequence of parallel algorithms
 GPUs are great at parallel computation
 Evolution of hardware and software to general purpose
 First GPGPU was accomplished with programmable rendering
  – DirectX
  – OpenGL
 Second generation using dedicated GPGPU APIs:
  – CUDA
  – OpenCL
  – DirectCompute
 Third generation of GPGPU on the way:
  – Heterogeneous Systems Architecture



 | HSA Algorithms in Games | June 13th, 2012
GPGPU IN GAMES


 Some GPGPU algorithms are being used in
  games right now. For example:
   – Physics
        Particles
        Fluid simulation
        Destruction
   – Specialized graphics algorithms
        Post-processing
 All these algorithms drive visual effects


                                               GPU particle system by Fairlight




 | HSA Algorithms in Games | June 13th, 2012
CURRENT PHYSICS EXAMPLE


 GPGPU particle simulation using DirectCompute
                                                        CPU
 Great for simulating thousands of visible particles
 Results of simulation are never copied back to CPU          Call GPU
   – Can not interfere with gameplay
   – Not synced in networked games
 Example: Smoke particles that affect game AI          GPU
                                                              Simulate
                                                              particles


                                                              Render
                                                              particles




 | HSA Algorithms in Games | June 13th, 2012
GPGPU LIMITATIONS


 Why isn’t GPGPU used more for non-graphics?
 Latency
  – DirectX has many layers and buffers
  – DirectX commands are buffered up to multiple frames
  – Actual execution on the GPU is delayed
 Copy overhead
  – GPU cannot directly access application memory
  – Must copy all data from and to the application
 Functionality
  – Constrained programming models




 | HSA Algorithms in Games | June 13th, 2012
HETEROGENEOUS SYSTEMS
         ARCHITECTURE
HETEROGENEOUS SYSTEMS ARCHITECTURE

 New hardware and software


Hardware                                       Software
 New features on discrete GPUs                 "Drivers"
 Accelerated Processing Unit                     – HSA provides a new, thin Compute API
  – Next generation processor                     – Very low latency
  – Multiple CPU and GPU cores on                 – Unified Address Space
    the same die                                  – Exposes more hardware capabilities
  – Shared memory access                        HSA Intermediate Language
  – Soon to be as widespread as                   – Virtual ISA
    multicore CPUs
                                                  – Introduces CPU programming features to the GPU




 | HSA Algorithms in Games | June 13th, 2012
USING THE APU


 Distinction between two hardware configurations
 APU without discrete GPU
  – Found in many laptops, soon in many desktops
  – Use the on-die GPU for rendering
 APU with discrete GPU:
  – Hard-core gamers will still use discrete GPUs
  – Asymmetrical CrossFire
  – Or: Dedicate the on-die GPU to Compute algorithms
        Could result in massive speedup of algorithms
        Using SIMD co-processors to offload the CPU is familiar to PS3 developers




 | HSA Algorithms in Games | June 13th, 2012
COPY OVERHEAD


 Current Compute APIs require the application to explicitly copy all input and output memory
  – Copying can easily takes longer than processing on CPU!
  – Only small datasets or very expensive computations benefit from GPGPU
 HSA introduces a Unified Address Space for CPU and GPU memory
  – CPU pointers on the GPU
  – Virtual memory on the GPU
        Paging over PCI-Express (discrete) or shared memory controller (APU)
  – Fully coherent
  – Will make GPGPU an option for many more algorithms




 | HSA Algorithms in Games | June 13th, 2012
LATENCY


 DirectX commands are buffered
 When the GPU is fully loaded this buffer is saturated
 Delay between scheduling and executing a GPGPU program on a busy GPU can take multiple frames
   – Results will be several frames behind
   – Game simulation needs all objects to be in sync
 GPGPU is currently impractical to use for anything but visual effects




 | HSA Algorithms in Games | June 13th, 2012
| HSA Algorithms in Games | June 13th, 2012
| HSA Algorithms in Games | June 13th, 2012
| HSA Algorithms in Games | June 13th, 2012
| HSA Algorithms in Games | June 13th, 2012
LATENCY


 HSA’s new Compute API will reduce latency
 How to deal with a saturated GPU?
 A second GPU
  – Dedicate the APU to Compute
  – Virtually no latency
 HSA feature: Graphics pre-emption
  – Context switching on the GPU
        Interrupt a graphics task (typically a large command list)
        Execute Compute algorithm
        Switch back to graphics
  – Can be used both on discrete GPUs or on the APU
 Choose the solution best suited to your needs




 | HSA Algorithms in Games | June 13th, 2012
APU USAGE EXAMPLE


                                               Schedule           Execute


DirectCompute

             GPU
               CPU


                    HSA

                                                          Frame
                                               Execute

 | HSA Algorithms in Games | June 13th, 2012
PROGRAMMING MODEL


 HSA Intermediate Language: HSAIL
 Designed for parallel algorithms
 JIT compiles your algorithm to CPU or GPU hardware
  – Also makes multi-core SIMD programming easy!
 High level language features
  – Object-oriented programming
  – Virtual functions
  – Exceptions
 Debugging
 SysCall support
  – I/O




 | HSA Algorithms in Games | June 13th, 2012
EXAMPLE ALGORITHMS
PHYSICS


 Current GPGPU physics solutions only output to
  the renderer
 With HSA you can simulate physics on the GPU
  and get the results back in the same frame
 Use hardware acceleration to compute physics for
  gameplay objects
 Reduced CPU load
 More objects, higher fidelity




 | HSA Algorithms in Games | June 13th, 2012
FRUSTUM CULLING


 Videogames tend to be GPU-bound
 Avoid rendering what cannot be seen
 Cull objects outside the camera viewport
  – Test the bounding box of every object against
    the camera frustum
  – Currently done on the CPU
  – Lots of vector math
  – Can be computed completely in parallel!
 CPU needs the results immediately
  – HSA will allow low-latency execution




 | HSA Algorithms in Games | June 13th, 2012
OCCLUSION CULLING


 Objects may be hidden behind others: Occlusion
 Final per-pixel occlusion is only known after
  rendering the scene
 Approximate occlusion by rendering low-detail
  geometry
   – This kind of occlusion culling is currently being
     done on CPU or on SPUs
   – Rendering is better suited to GPUs
 HSA solution:
   – Software rasterization in Compute on the GPU
   – HSA does not yet expose graphics pipeline 
                                                         Software occlusion culling in Battlefield 3
   – Still much faster than a multicore CPU




 | HSA Algorithms in Games | June 13th, 2012
SORTING


 Typically several long lists per frame need sorting
 Sorting on the GPU using a parallel sort algorithm
   – Ken Batcher: Bitonic or Odd-even mergesort
 Copy overhead currently negates the performance
  advantage of using a GPU sorting algorithm
 HSA solution:
   – Unified Address Space
   – GPU can sort in-place in system memory




 | HSA Algorithms in Games | June 13th, 2012
ASSET DECOMPRESSION


 Game assets are stored compressed on disk
 Decompression is expensive
 The usage of some compression algorithms is
  prevented by CPU speed
 Games are moving away from loading screens
 An APU with Unified Address Space
  – Can be used to decompress new assets
    without taxing the CPU or discrete GPU
  – Perhaps even use HSAIL I/O to read from disk
  – A better streaming experience for gamers




 | HSA Algorithms in Games | June 13th, 2012
PATHFINDING


 Some strategy games simulate thousands of units
 Pathfinding over complex terrain with thousands of
  moving units is very expensive
 Clever approximate solutions are often used
  – Supreme Commander 2 “Flow field”
 GPGPU pathfinding with HSA
  – Use one GPU thread per unit to do a deep
    search for an optimal path
  – With HSA such an algorithm can page all
    requisite data from system memory and write
    back found paths
  – APU could be fully saturated with pathfinding
    without impacting framerate




 | HSA Algorithms in Games | June 13th, 2012
CONCLUSION


 Many algorithms in games are suitable for offloading to the GPU
 Heterogeneous Systems Architecture solves two major obstacles
  – Latency
  – Memory access
 HSAIL allows for entirely new kinds of GPGPU programs
 APUs can be used to offload the CPU
 HSA will finally make GPUs available to developers as full-featured co-processors




 | HSA Algorithms in Games | June 13th, 2012
THANK YOU


 Any questions?




 | HSA Algorithms in Games | June 13th, 2012
Disclaimer & Attribution
        The information presented in this document is for informational purposes only and may contain technical inaccuracies, omissions
        and typographical errors.

        The information contained herein is subject to change and may be rendered inaccurate for many reasons, including but not limited
        to product and roadmap changes, component and motherboard version changes, new model and/or product releases, product
        differences between differing manufacturers, software changes, BIOS flashes, firmware upgrades, or the like. There is no
        obligation to update or otherwise correct or revise this information. However, we reserve the right to revise this information and to
        make changes from time to time to the content hereof without obligation to notify any person of such revisions or changes.

        NO REPRESENTATIONS OR WARRANTIES ARE MADE WITH RESPECT TO THE CONTENTS HEREOF AND NO
        RESPONSIBILITY IS ASSUMED FOR ANY INACCURACIES, ERRORS OR OMISSIONS THAT MAY APPEAR IN THIS
        INFORMATION.

        ALL IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE ARE EXPRESSLY
        DISCLAIMED. IN NO EVENT WILL ANY LIABILITY TO ANY PERSON BE INCURRED FOR ANY DIRECT, INDIRECT, SPECIAL
        OR OTHER CONSEQUENTIAL DAMAGES ARISING FROM THE USE OF ANY INFORMATION CONTAINED HEREIN, EVEN IF
        EXPRESSLY ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

        AMD, the AMD arrow logo, and combinations thereof are trademarks of Advanced Micro Devices, Inc. All other names used in
        this presentation are for informational purposes only and may be trademarks of their respective owners.

        The contents of this presentation were provided by individual(s) and/or company listed on the title page. The information and
        opinions presented in this presentation may not represent AMD’s positions, strategies or opinions. Unless explicitly stated, AMD is
        not responsible for the content herein and no endorsements are implied.




| HSA Algorithms in Games | June 13th, 2012

More Related Content

What's hot

Graphic Processing Unit
Graphic Processing UnitGraphic Processing Unit
Graphic Processing Unit
Kamran Ashraf
 
19564926 graphics-processing-unit
19564926 graphics-processing-unit19564926 graphics-processing-unit
19564926 graphics-processing-unit
Dayakar Siddula
 

What's hot (20)

HC-4020, Enhancing OpenCL performance in AfterShot Pro with HSA, by Michael W...
HC-4020, Enhancing OpenCL performance in AfterShot Pro with HSA, by Michael W...HC-4020, Enhancing OpenCL performance in AfterShot Pro with HSA, by Michael W...
HC-4020, Enhancing OpenCL performance in AfterShot Pro with HSA, by Michael W...
 
Graphic Processing Unit
Graphic Processing UnitGraphic Processing Unit
Graphic Processing Unit
 
Gpu
GpuGpu
Gpu
 
Graphics processing unit (GPU)
Graphics processing unit (GPU)Graphics processing unit (GPU)
Graphics processing unit (GPU)
 
Example Application of GPU
Example Application of GPUExample Application of GPU
Example Application of GPU
 
Nvidia (History, GPU Architecture and New Pascal Architecture)
Nvidia (History, GPU Architecture and New Pascal Architecture)Nvidia (History, GPU Architecture and New Pascal Architecture)
Nvidia (History, GPU Architecture and New Pascal Architecture)
 
19564926 graphics-processing-unit
19564926 graphics-processing-unit19564926 graphics-processing-unit
19564926 graphics-processing-unit
 
Graphics processing unit (gpu)
Graphics processing unit (gpu)Graphics processing unit (gpu)
Graphics processing unit (gpu)
 
Graphics processing unit ppt
Graphics processing unit pptGraphics processing unit ppt
Graphics processing unit ppt
 
Graphics Processing Unit by Saurabh
Graphics Processing Unit by SaurabhGraphics Processing Unit by Saurabh
Graphics Processing Unit by Saurabh
 
Graphics Processing Unit - GPU
Graphics Processing Unit - GPUGraphics Processing Unit - GPU
Graphics Processing Unit - GPU
 
Gpu with cuda architecture
Gpu with cuda architectureGpu with cuda architecture
Gpu with cuda architecture
 
GRAPHICS PROCESSING UNIT (GPU)
GRAPHICS PROCESSING UNIT (GPU)GRAPHICS PROCESSING UNIT (GPU)
GRAPHICS PROCESSING UNIT (GPU)
 
PL-4044, OpenACC on AMD APUs and GPUs with the PGI Accelerator Compilers, by ...
PL-4044, OpenACC on AMD APUs and GPUs with the PGI Accelerator Compilers, by ...PL-4044, OpenACC on AMD APUs and GPUs with the PGI Accelerator Compilers, by ...
PL-4044, OpenACC on AMD APUs and GPUs with the PGI Accelerator Compilers, by ...
 
Computer Vision Powered by Heterogeneous System Architecture (HSA) by Dr. Ha...
Computer Vision Powered by Heterogeneous System Architecture (HSA) by  Dr. Ha...Computer Vision Powered by Heterogeneous System Architecture (HSA) by  Dr. Ha...
Computer Vision Powered by Heterogeneous System Architecture (HSA) by Dr. Ha...
 
Gpu presentation
Gpu presentationGpu presentation
Gpu presentation
 
WT-4066, The Making of Turbulenz’ Polycraft WebGL Benchmark, by Ian Ballantyne
WT-4066, The Making of Turbulenz’ Polycraft WebGL Benchmark, by Ian BallantyneWT-4066, The Making of Turbulenz’ Polycraft WebGL Benchmark, by Ian Ballantyne
WT-4066, The Making of Turbulenz’ Polycraft WebGL Benchmark, by Ian Ballantyne
 
PL-4047, Big Data Workload Analysis Using SWAT and Ipython Notebooks, by Moni...
PL-4047, Big Data Workload Analysis Using SWAT and Ipython Notebooks, by Moni...PL-4047, Big Data Workload Analysis Using SWAT and Ipython Notebooks, by Moni...
PL-4047, Big Data Workload Analysis Using SWAT and Ipython Notebooks, by Moni...
 
GS-4151, Developing Thief with new AMD technology, by Jurjen Katsman
GS-4151, Developing Thief with new AMD technology, by Jurjen KatsmanGS-4151, Developing Thief with new AMD technology, by Jurjen Katsman
GS-4151, Developing Thief with new AMD technology, by Jurjen Katsman
 
GS-4136, Optimizing Game Development using AMD’s GPU PerfStudio 2, by Gordon ...
GS-4136, Optimizing Game Development using AMD’s GPU PerfStudio 2, by Gordon ...GS-4136, Optimizing Game Development using AMD’s GPU PerfStudio 2, by Gordon ...
GS-4136, Optimizing Game Development using AMD’s GPU PerfStudio 2, by Gordon ...
 

Viewers also liked

Media studies – advance portfolio
Media studies – advance portfolioMedia studies – advance portfolio
Media studies – advance portfolio
Asad Tanveer
 
PerlApp2Postgresql (2)
PerlApp2Postgresql (2)PerlApp2Postgresql (2)
PerlApp2Postgresql (2)
Jerome Eteve
 
Junior school i pad apps
Junior school i pad appsJunior school i pad apps
Junior school i pad apps
CORE Education
 
Boletín de ambiente y seguridad industrial agosto 2014
Boletín de ambiente y seguridad industrial agosto 2014Boletín de ambiente y seguridad industrial agosto 2014
Boletín de ambiente y seguridad industrial agosto 2014
CámaraCIP
 
Hoja de proyecto de mejora
Hoja de proyecto de mejoraHoja de proyecto de mejora
Hoja de proyecto de mejora
zakuvmupn
 
Quite Possibly The Most Unnoticed Answer For programa de facturacion para far...
Quite Possibly The Most Unnoticed Answer For programa de facturacion para far...Quite Possibly The Most Unnoticed Answer For programa de facturacion para far...
Quite Possibly The Most Unnoticed Answer For programa de facturacion para far...
tunemanx8
 

Viewers also liked (19)

Whitepaper: How to Increase User Adoption for SharePoint Sites - Happiest Minds
Whitepaper: How to Increase User Adoption for SharePoint Sites - Happiest MindsWhitepaper: How to Increase User Adoption for SharePoint Sites - Happiest Minds
Whitepaper: How to Increase User Adoption for SharePoint Sites - Happiest Minds
 
Media studies – advance portfolio
Media studies – advance portfolioMedia studies – advance portfolio
Media studies – advance portfolio
 
Russia DMC 9 Days Package Moscow
Russia DMC 9 Days Package MoscowRussia DMC 9 Days Package Moscow
Russia DMC 9 Days Package Moscow
 
Sterling Ascentia Marathahalli, Bangalore, offering 2 & 3 BHK apartments.
Sterling Ascentia Marathahalli, Bangalore, offering 2 & 3 BHK apartments.Sterling Ascentia Marathahalli, Bangalore, offering 2 & 3 BHK apartments.
Sterling Ascentia Marathahalli, Bangalore, offering 2 & 3 BHK apartments.
 
PerlApp2Postgresql (2)
PerlApp2Postgresql (2)PerlApp2Postgresql (2)
PerlApp2Postgresql (2)
 
Junior school i pad apps
Junior school i pad appsJunior school i pad apps
Junior school i pad apps
 
教出學習力—從小打造讀書好習慣
教出學習力—從小打造讀書好習慣教出學習力—從小打造讀書好習慣
教出學習力—從小打造讀書好習慣
 
Sq3 r
Sq3 rSq3 r
Sq3 r
 
Robótica: Introducción
Robótica: IntroducciónRobótica: Introducción
Robótica: Introducción
 
C222529
C222529C222529
C222529
 
B230716
B230716B230716
B230716
 
B221424
B221424B221424
B221424
 
C231723
C231723C231723
C231723
 
Boletín de ambiente y seguridad industrial agosto 2014
Boletín de ambiente y seguridad industrial agosto 2014Boletín de ambiente y seguridad industrial agosto 2014
Boletín de ambiente y seguridad industrial agosto 2014
 
防災ガールのVISION
防災ガールのVISION防災ガールのVISION
防災ガールのVISION
 
신림프로그래머 Kafka study
신림프로그래머 Kafka study신림프로그래머 Kafka study
신림프로그래머 Kafka study
 
Skill Development - 12th Plan Hackathon - 6th April 2013
Skill Development - 12th Plan Hackathon - 6th April 2013Skill Development - 12th Plan Hackathon - 6th April 2013
Skill Development - 12th Plan Hackathon - 6th April 2013
 
Hoja de proyecto de mejora
Hoja de proyecto de mejoraHoja de proyecto de mejora
Hoja de proyecto de mejora
 
Quite Possibly The Most Unnoticed Answer For programa de facturacion para far...
Quite Possibly The Most Unnoticed Answer For programa de facturacion para far...Quite Possibly The Most Unnoticed Answer For programa de facturacion para far...
Quite Possibly The Most Unnoticed Answer For programa de facturacion para far...
 

Similar to Cg 4278

Revisiting Co-Processing for Hash Joins on the Coupled Cpu-GPU Architecture
Revisiting Co-Processing for Hash Joins on the CoupledCpu-GPU ArchitectureRevisiting Co-Processing for Hash Joins on the CoupledCpu-GPU Architecture
Revisiting Co-Processing for Hash Joins on the Coupled Cpu-GPU Architecture
mohamedragabslideshare
 
Volume 2-issue-6-2040-2045
Volume 2-issue-6-2040-2045Volume 2-issue-6-2040-2045
Volume 2-issue-6-2040-2045
Editor IJARCET
 
Volume 2-issue-6-2040-2045
Volume 2-issue-6-2040-2045Volume 2-issue-6-2040-2045
Volume 2-issue-6-2040-2045
Editor IJARCET
 

Similar to Cg 4278 (20)

AMD 2012: HSA in Gaming
AMD 2012: HSA in GamingAMD 2012: HSA in Gaming
AMD 2012: HSA in Gaming
 
HSA Overview
HSA Overview HSA Overview
HSA Overview
 
GPU Computing
GPU ComputingGPU Computing
GPU Computing
 
GPU Programming with Java
GPU Programming with JavaGPU Programming with Java
GPU Programming with Java
 
GPGPU programming with CUDA
GPGPU programming with CUDAGPGPU programming with CUDA
GPGPU programming with CUDA
 
Apu fc & s project
Apu fc & s projectApu fc & s project
Apu fc & s project
 
A SURVEY ON GPU SYSTEM CONSIDERING ITS PERFORMANCE ON DIFFERENT APPLICATIONS
A SURVEY ON GPU SYSTEM CONSIDERING ITS PERFORMANCE ON DIFFERENT APPLICATIONSA SURVEY ON GPU SYSTEM CONSIDERING ITS PERFORMANCE ON DIFFERENT APPLICATIONS
A SURVEY ON GPU SYSTEM CONSIDERING ITS PERFORMANCE ON DIFFERENT APPLICATIONS
 
Revisiting Co-Processing for Hash Joins on the Coupled Cpu-GPU Architecture
Revisiting Co-Processing for Hash Joins on the CoupledCpu-GPU ArchitectureRevisiting Co-Processing for Hash Joins on the CoupledCpu-GPU Architecture
Revisiting Co-Processing for Hash Joins on the Coupled Cpu-GPU Architecture
 
Graphics Processing Unit: An Introduction
Graphics Processing Unit: An IntroductionGraphics Processing Unit: An Introduction
Graphics Processing Unit: An Introduction
 
Gpu
GpuGpu
Gpu
 
Parallel Futures of a Game Engine (v2.0)
Parallel Futures of a Game Engine (v2.0)Parallel Futures of a Game Engine (v2.0)
Parallel Futures of a Game Engine (v2.0)
 
Keynote (Dr. Lisa Su) - Developers: The Heart of AMD Innovation - by Dr. Lisa...
Keynote (Dr. Lisa Su) - Developers: The Heart of AMD Innovation - by Dr. Lisa...Keynote (Dr. Lisa Su) - Developers: The Heart of AMD Innovation - by Dr. Lisa...
Keynote (Dr. Lisa Su) - Developers: The Heart of AMD Innovation - by Dr. Lisa...
 
Final lisa opening_keynote_draft_-_v12.1tb
Final lisa opening_keynote_draft_-_v12.1tbFinal lisa opening_keynote_draft_-_v12.1tb
Final lisa opening_keynote_draft_-_v12.1tb
 
Making GPU resets less painful on Linux
Making GPU resets less painful on LinuxMaking GPU resets less painful on Linux
Making GPU resets less painful on Linux
 
Keynote (Johan Andersson) - Mantle for Developers - by Johan Andersson, Techn...
Keynote (Johan Andersson) - Mantle for Developers - by Johan Andersson, Techn...Keynote (Johan Andersson) - Mantle for Developers - by Johan Andersson, Techn...
Keynote (Johan Andersson) - Mantle for Developers - by Johan Andersson, Techn...
 
Image Processing Application on Graphics processors
Image Processing Application on Graphics processorsImage Processing Application on Graphics processors
Image Processing Application on Graphics processors
 
GPU - An Introduction
GPU - An IntroductionGPU - An Introduction
GPU - An Introduction
 
Volume 2-issue-6-2040-2045
Volume 2-issue-6-2040-2045Volume 2-issue-6-2040-2045
Volume 2-issue-6-2040-2045
 
Volume 2-issue-6-2040-2045
Volume 2-issue-6-2040-2045Volume 2-issue-6-2040-2045
Volume 2-issue-6-2040-2045
 
GPGPU Accelerates PostgreSQL (English)
GPGPU Accelerates PostgreSQL (English)GPGPU Accelerates PostgreSQL (English)
GPGPU Accelerates PostgreSQL (English)
 

Cg 4278

  • 1. GPGPU ALGORITHMS IN GAMES How Heterogeneous Systems Architecture can be leveraged to optimize algorithms in video games Matthijs De Smedt Nixxes Software B.V. Lead Graphics Programmer
  • 2. CONTENTS  A short introduction  Current usage of GPGPU in games  Heterogeneous Systems Architecture  Examples made possible by HSA | HSA Algorithms in Games | June 13th, 2012
  • 4. VIDEOGAMES  Games are near real-time simulations CPU  Response time is key Input  Most systems run in sync with the output frequency – Rendering 60 frames per second – Allows for 16ms of processing time Simulate  Framerate is limited either by: – GPU Render – CPU – Display (VSync) GPU Render | HSA Algorithms in Games | June 13th, 2012
  • 5. HARDWARE  Typical hardware target for PC games: – One multicore CPU – One GPU  Multiple GPUs: CrossFire – Transparent to the application – Driver alternates frames between GPUs  GPUs are becoming more general purpose: – General Purpose GPU algorithms (GPGPU) CrossFire | HSA Algorithms in Games | June 13th, 2012
  • 7. INTRODUCTION TO GPGPU  Rendering is a sequence of parallel algorithms  GPUs are great at parallel computation  Evolution of hardware and software to general purpose  First GPGPU was accomplished with programmable rendering – DirectX – OpenGL  Second generation using dedicated GPGPU APIs: – CUDA – OpenCL – DirectCompute  Third generation of GPGPU on the way: – Heterogeneous Systems Architecture | HSA Algorithms in Games | June 13th, 2012
  • 8. GPGPU IN GAMES  Some GPGPU algorithms are being used in games right now. For example: – Physics  Particles  Fluid simulation  Destruction – Specialized graphics algorithms  Post-processing  All these algorithms drive visual effects GPU particle system by Fairlight | HSA Algorithms in Games | June 13th, 2012
  • 9. CURRENT PHYSICS EXAMPLE  GPGPU particle simulation using DirectCompute CPU  Great for simulating thousands of visible particles  Results of simulation are never copied back to CPU Call GPU – Can not interfere with gameplay – Not synced in networked games  Example: Smoke particles that affect game AI GPU Simulate particles Render particles | HSA Algorithms in Games | June 13th, 2012
  • 10. GPGPU LIMITATIONS  Why isn’t GPGPU used more for non-graphics?  Latency – DirectX has many layers and buffers – DirectX commands are buffered up to multiple frames – Actual execution on the GPU is delayed  Copy overhead – GPU cannot directly access application memory – Must copy all data from and to the application  Functionality – Constrained programming models | HSA Algorithms in Games | June 13th, 2012
  • 11. HETEROGENEOUS SYSTEMS ARCHITECTURE
  • 12. HETEROGENEOUS SYSTEMS ARCHITECTURE  New hardware and software Hardware Software  New features on discrete GPUs  "Drivers"  Accelerated Processing Unit – HSA provides a new, thin Compute API – Next generation processor – Very low latency – Multiple CPU and GPU cores on – Unified Address Space the same die – Exposes more hardware capabilities – Shared memory access  HSA Intermediate Language – Soon to be as widespread as – Virtual ISA multicore CPUs – Introduces CPU programming features to the GPU | HSA Algorithms in Games | June 13th, 2012
  • 13. USING THE APU  Distinction between two hardware configurations  APU without discrete GPU – Found in many laptops, soon in many desktops – Use the on-die GPU for rendering  APU with discrete GPU: – Hard-core gamers will still use discrete GPUs – Asymmetrical CrossFire – Or: Dedicate the on-die GPU to Compute algorithms  Could result in massive speedup of algorithms  Using SIMD co-processors to offload the CPU is familiar to PS3 developers | HSA Algorithms in Games | June 13th, 2012
  • 14. COPY OVERHEAD  Current Compute APIs require the application to explicitly copy all input and output memory – Copying can easily takes longer than processing on CPU! – Only small datasets or very expensive computations benefit from GPGPU  HSA introduces a Unified Address Space for CPU and GPU memory – CPU pointers on the GPU – Virtual memory on the GPU  Paging over PCI-Express (discrete) or shared memory controller (APU) – Fully coherent – Will make GPGPU an option for many more algorithms | HSA Algorithms in Games | June 13th, 2012
  • 15. LATENCY  DirectX commands are buffered  When the GPU is fully loaded this buffer is saturated  Delay between scheduling and executing a GPGPU program on a busy GPU can take multiple frames – Results will be several frames behind – Game simulation needs all objects to be in sync  GPGPU is currently impractical to use for anything but visual effects | HSA Algorithms in Games | June 13th, 2012
  • 16. | HSA Algorithms in Games | June 13th, 2012
  • 17. | HSA Algorithms in Games | June 13th, 2012
  • 18. | HSA Algorithms in Games | June 13th, 2012
  • 19. | HSA Algorithms in Games | June 13th, 2012
  • 20. LATENCY  HSA’s new Compute API will reduce latency  How to deal with a saturated GPU?  A second GPU – Dedicate the APU to Compute – Virtually no latency  HSA feature: Graphics pre-emption – Context switching on the GPU  Interrupt a graphics task (typically a large command list)  Execute Compute algorithm  Switch back to graphics – Can be used both on discrete GPUs or on the APU  Choose the solution best suited to your needs | HSA Algorithms in Games | June 13th, 2012
  • 21. APU USAGE EXAMPLE Schedule Execute DirectCompute GPU CPU HSA Frame Execute | HSA Algorithms in Games | June 13th, 2012
  • 22. PROGRAMMING MODEL  HSA Intermediate Language: HSAIL  Designed for parallel algorithms  JIT compiles your algorithm to CPU or GPU hardware – Also makes multi-core SIMD programming easy!  High level language features – Object-oriented programming – Virtual functions – Exceptions  Debugging  SysCall support – I/O | HSA Algorithms in Games | June 13th, 2012
  • 24. PHYSICS  Current GPGPU physics solutions only output to the renderer  With HSA you can simulate physics on the GPU and get the results back in the same frame  Use hardware acceleration to compute physics for gameplay objects  Reduced CPU load  More objects, higher fidelity | HSA Algorithms in Games | June 13th, 2012
  • 25. FRUSTUM CULLING  Videogames tend to be GPU-bound  Avoid rendering what cannot be seen  Cull objects outside the camera viewport – Test the bounding box of every object against the camera frustum – Currently done on the CPU – Lots of vector math – Can be computed completely in parallel!  CPU needs the results immediately – HSA will allow low-latency execution | HSA Algorithms in Games | June 13th, 2012
  • 26. OCCLUSION CULLING  Objects may be hidden behind others: Occlusion  Final per-pixel occlusion is only known after rendering the scene  Approximate occlusion by rendering low-detail geometry – This kind of occlusion culling is currently being done on CPU or on SPUs – Rendering is better suited to GPUs  HSA solution: – Software rasterization in Compute on the GPU – HSA does not yet expose graphics pipeline  Software occlusion culling in Battlefield 3 – Still much faster than a multicore CPU | HSA Algorithms in Games | June 13th, 2012
  • 27. SORTING  Typically several long lists per frame need sorting  Sorting on the GPU using a parallel sort algorithm – Ken Batcher: Bitonic or Odd-even mergesort  Copy overhead currently negates the performance advantage of using a GPU sorting algorithm  HSA solution: – Unified Address Space – GPU can sort in-place in system memory | HSA Algorithms in Games | June 13th, 2012
  • 28. ASSET DECOMPRESSION  Game assets are stored compressed on disk  Decompression is expensive  The usage of some compression algorithms is prevented by CPU speed  Games are moving away from loading screens  An APU with Unified Address Space – Can be used to decompress new assets without taxing the CPU or discrete GPU – Perhaps even use HSAIL I/O to read from disk – A better streaming experience for gamers | HSA Algorithms in Games | June 13th, 2012
  • 29. PATHFINDING  Some strategy games simulate thousands of units  Pathfinding over complex terrain with thousands of moving units is very expensive  Clever approximate solutions are often used – Supreme Commander 2 “Flow field”  GPGPU pathfinding with HSA – Use one GPU thread per unit to do a deep search for an optimal path – With HSA such an algorithm can page all requisite data from system memory and write back found paths – APU could be fully saturated with pathfinding without impacting framerate | HSA Algorithms in Games | June 13th, 2012
  • 30. CONCLUSION  Many algorithms in games are suitable for offloading to the GPU  Heterogeneous Systems Architecture solves two major obstacles – Latency – Memory access  HSAIL allows for entirely new kinds of GPGPU programs  APUs can be used to offload the CPU  HSA will finally make GPUs available to developers as full-featured co-processors | HSA Algorithms in Games | June 13th, 2012
  • 31. THANK YOU  Any questions? | HSA Algorithms in Games | June 13th, 2012
  • 32.
  • 33. Disclaimer & Attribution The information presented in this document is for informational purposes only and may contain technical inaccuracies, omissions and typographical errors. The information contained herein is subject to change and may be rendered inaccurate for many reasons, including but not limited to product and roadmap changes, component and motherboard version changes, new model and/or product releases, product differences between differing manufacturers, software changes, BIOS flashes, firmware upgrades, or the like. There is no obligation to update or otherwise correct or revise this information. However, we reserve the right to revise this information and to make changes from time to time to the content hereof without obligation to notify any person of such revisions or changes. NO REPRESENTATIONS OR WARRANTIES ARE MADE WITH RESPECT TO THE CONTENTS HEREOF AND NO RESPONSIBILITY IS ASSUMED FOR ANY INACCURACIES, ERRORS OR OMISSIONS THAT MAY APPEAR IN THIS INFORMATION. ALL IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE ARE EXPRESSLY DISCLAIMED. IN NO EVENT WILL ANY LIABILITY TO ANY PERSON BE INCURRED FOR ANY DIRECT, INDIRECT, SPECIAL OR OTHER CONSEQUENTIAL DAMAGES ARISING FROM THE USE OF ANY INFORMATION CONTAINED HEREIN, EVEN IF EXPRESSLY ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. AMD, the AMD arrow logo, and combinations thereof are trademarks of Advanced Micro Devices, Inc. All other names used in this presentation are for informational purposes only and may be trademarks of their respective owners. The contents of this presentation were provided by individual(s) and/or company listed on the title page. The information and opinions presented in this presentation may not represent AMD’s positions, strategies or opinions. Unless explicitly stated, AMD is not responsible for the content herein and no endorsements are implied. | HSA Algorithms in Games | June 13th, 2012