data oriented design in game development
play

Data-oriented design in game development Johannes Hirche - PowerPoint PPT Presentation

Data-oriented design in game development Johannes Hirche Introduction (Most) video games present a number of challenges Soft real time >30Hz Large amount of data Up to 2 billion polygons/s Tenths of thousands of objects


  1. Data-oriented design in game development Johannes Hirche

  2. Introduction (Most) video games present a number of challenges • Soft real time – >30Hz • Large amount of data – Up to 2 billion polygons/s – Tenths of thousands of objects – Gigabytes of textures (image data) – Physics simulations

  3. Introduction • Highly dynamic – Depending on user input – Network (user input as well) • Can’t be solved by throwing new hardware at it – Clients not likely to have the newest things available – Consoles have fixed performance

  4. Obvious conclusion • Processing needs to be as efficient as possible

  5. Main Bottleneck • Memory throughput and access time

  6. How bad is it really? PlayStation 2 • A read from memory takes 40 cycles at 300 MHz PlayStation 3 + Xbox 360 + Fast PC • A read from memory takes ~600 cycles at 3.2 GHz

  7. Memory Latency Hierarchy Disks (Blu-ray/DVD/HDD) :( Main Memory 600 cycles Latency L2 Cache 40 cycles L1 Cache 1 – 2 cycles CPU / Registers

  8. And it won’t get better anytime soon

  9. Next conclusion • Reduce data? – Not really an option • Focus on memory performance is key

  10. Impact on Video Game Industry Last few years shift in focus in design • Away from object oriented design to more C-like style • “Data-Oriented Design” emerged

  11. So what is this Data-Oriented Design?

  12. It’s about on shifting focus to how data is read and written You cannot be fast without knowing how data is touched

  13. Data Oriented Design – Example class Bot { ... Vec3 m_position; ... float m_mod; ... float m_aimDirection; ... void updateAim(Vec3 target) { m_aimDirection = dot3(m_position, target) * m_mod; } }

  14. Data Oriented Design – Example class Bot { I-cache- ... Vec3 m_position; miss Unused ... cached float m_mod; ... data float m_aimDirection; ... void updateAim(Vec3 target) { m_aimDirection = dot3(m_position, target) * m_mod; } } D-cache- miss

  15. Data Oriented Design – Example Very hard to optimize! class Bot { I-cache- ... Vec3 m_position; miss Unused ... cached float m_mod; ... data float m_aimDirection; ... void updateAim(Vec3 target) { m_aimDirection = dot3(m_position, target) * m_mod; } } D-cache- miss

  16. Data Oriented Design – Example Assume we have four different bots void updateAim(Vec3 target) ~20 { cycles m_aimDirection = dot3(m_position, target) * m_mod; } iCache – 600 m_position – 600 m_mod - 600 aimDir – 100 iCache – 600 m_position – 600 m_mod - 600 aimDir – 100 7680 iCache – 600 m_position – 600 m_mod - 600 aimDir – 100 iCache – 600 m_position – 600 m_mod - 600 aimDir – 100

  17. What to do?? • Isolate task at hand – Arrange for many at once • Find the data objects • Design based on access patterns • Focus on output data • Only read in data really necessary to do the work! • Linear arrays!

  18. Data Oriented Design – Example void updateAims(float* aimDir,const AimingData* aim, Vec3 target, uint count) { for (uint i = 0; i < count; ++i) { aimDir[i] = dot3(aim->positions[i],target) * aim->mod[i]; } } What has changed? Only ¡read ¡needed ¡inputs Write ¡to ¡linear ¡array Loop ¡over ¡all ¡the ¡data Actual ¡code ¡unchanged Code ¡separated

  19. Data Oriented Design – Example improved void updateAims(float* aimDir, const AimingData* aim, Vec3 target, uint count) { for (uint i = 0; i < count; ++i) { aimDir[i] = dot3(aim->positions[i], target) * aim->mod[i]; } ~20 } cycles iCache – 600 positions – 600 mod - 600 aimDir – 100 1980

  20. Data Layout OO vs DOD pos0 pos0 pos0 pos0 pos0 pos0 pos0 pos0 pos1 pos1 pos1 pos1 pos2 pos2 pos2 pos2 pos3 pos3 pos3 pos3 mod0 mod0 mod1 mod2 mod3 aimDir0 aimDir0 aimDir1 aimDir2 aimDir3 Pos1 Pos1 Pos1 Pos1 Each color block is one mod1 128 byte cache line aimDir 1

  21. Put into one sentence Scrap objects and put everything in linear arrays!

  22. Other Benefits

  23. Multithreading / Parallelization Update() Object Object Object Read? Write? Read? Write? Read? Write?

  24. Multithreading / Parallelization Update() Object Object Object Read? Write? Read? Write? Read? Write? ● Cannot multithread without knowing how data is touched

  25. Multithreading / Parallelization • Object focused design harder to do parallel – Large overhead for synchronization • Locks, mutexes, etc. – Very error-prone, hard to debug – Maybe slower than single thread in the end

  26. Multithreading / Parallelization The future is parallel! • No way to avoid multiple cores DoD is easier to parallelize • We have: – Input data – Small function processing it – Output data • Can be split easily

  27. Cache Utilization • Better usage of instruction cache • Processed data sits linearly in memory – Almost perfect usage of data cache

  28. Why – Offloading to Co-Processors ? ? SPU/GPU/APU • If data is unknown hard/impossible to run on co-unit

  29. DOD Code is more modular, easier to optimize! • Big chunk of data to transform • One isolated function processes whole block – Modular code • Optimize the function by whatever means – Assembler etc. – Still readable, manageable – Big performance gain!

  30. DOD Code is easier to test! • Functionality is in one function with one in and output • Easier to generate stream of data with test cases – Compare results • Perfect for unit tests

  31. Why – Better Design… at least sometimes • Data focus can lead to isolated, self- contained, interchangeable pieces of code and data • Object focus can lead to framework hell WindowBorderDecoratorAccessorIterator … .

  32. Why – Better Design… at least sometimes • Data focus can lead to isolated, self- contained, interchangeable pieces of code and data • This can make it easier to test data and code in isolation

  33. Performance is all about memory! • Optimize for data first then code – Classic approach is to meddle with code • Most code likely bound by memory access • Not everything needs to be an object • We do games, we know our data! • Pre-format! – Source data and native data doesn’t need to be the same

  34. Performance is all about memory! Source data Native Data (Linked List) (Array) position position position position count next position position position position position position position position position position position position position position position position position position next position position position position next

  35. DOD Drawbacks? • Many people are OO-minded – Need to realign the brain a bit • Can be hard to interface with legacy OO code

  36. How to actually do it • Pick specific section of your project – Navigation, collision, animation etc • Find data inputs, identify required outputs – Collision creates set of contact points etc. • Classify the data – Read-only, read-write, write-only – Defines where to store and how to interact with other modules

  37. How to actually do it • Find data required to do many transforms at once – Not one skeleton, hundreds • Determine how data is used – Try to store same data in blocks for seperate processing

  38. So OO is dead in game development? • OO still works if there are few or single instances with functionality – GraphicsDevice • GUI code not performance critical – OO works fine there – Legacy code usually OO anyway

  39. Some provocative statements about object oriented design

  40. Some C++ History • 1979 Development started • 1983 Named ‘C++’ • 1985 First commercial release • 1989 Release 2.0 • 1998 Standardized • 2003 + 2011 updated

  41. Let’s look back at 1979…

  42. A LOT has changed since then • CPUs have become MUCH faster • Memory has become a little faster • Multiple cores • Lots of things have been added to C++

  43. Visions/Goals with OO • Reusable code classes! – Didn't really work out – Had to become super configurable to actually be useful • Great design pattern! – Overuse of design patters results in overly complex code – Better to write code in a model you understand and not in some abstract way someone else came up with

  44. Visions/Goals with OO • Frameworks for classes and components are great! – Idea: Hide all implementation and technical complexity – Too restrictive, cumbersome and too much work

  45. Visions/Goals with OO • Inheritance! Interfaces! – Identify common code/behavior and put in shared base class! No duplicated code, benefits! – In practice not really. Every subclass needs minor adaptations. – Changing the base class will break everything – Often only used for interfaces

  46. Visions/Goals with OO • Encapsulation! – Encapsulate state and variables, only expose behavior with functions. – In reality you often enough you want the values of variables – Why not just use a normal struct or structured data

  47. The Three Big Lies 1. Software is a platform 2. Code should be designed around a model of the world 3. Code is more important than data

  48. Questions?

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