The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
48 views

How do I create a Multi-Layer Perceptron following DOD? Or how are dynamically allocated arrays stored?

First of all, I'm new to this concept of DOD, and while new to it, I find it really exciting from a programmer perspective. I made a Multi-Layer Perceptron a while ago as an OO project for myself, ...
4
votes
3answers
377 views

Data oriented access to several indexed data arrays

I am working on an entity component system for a game engine. One of my goals is to use a data oriented approach for optimal data processing. In other words, I want to follow the guideline of rather ...
2
votes
2answers
148 views

How to deal with object deletion in continuous allocation?

I've recently found benefits of Data Oriented Design. It looks very impressive. One of points is grouping data by type and access, not all together in objects, but in arrays, to prevent cache misses ...
3
votes
1answer
140 views

Object orientation, data orientation, cache pollution and cache obviousness

In a regular object oriented practice it is not that rare objects have multiple unrelated member properties. And when objects are being processed, it is not rare that it is done in different passes, ...
4
votes
2answers
203 views

Data oriented design in OOP

In this slides (after slide 15) it is suggested to use void updateAims(float* aimDir, const AimingData* aim, vec3 target, uint count) { for(uint i = 0; i < count; i++) { ...
0
votes
2answers
142 views

the instruction cache and conditional statements

im trying to orient my code to use the cache as efficiently as possible using data oriented design, its my first time thinking about such things as it goes. ive worked out a way to loop over the same ...
0
votes
0answers
48 views

effect of loop within a loop on the cache

imagine I have several entities that i need to check for collision detection, and im attempting to follow DOD, what are my options with regards to limiting work done in the cache? say i have a ...
0
votes
0answers
109 views

use of OOP within DOD [closed]

Basically how do I structure a Data oriented design program? I have just recently been introduced to the concept of DOD, makes a lot of sense, I've read a few examples on here and understand what ...
0
votes
2answers
370 views

I'm trying out Data Oriented Design - Can I do this with std::vector?

Okay, here's sample code comparing an Object Oriented Programming (OOP) solution vs a Data Oriented Design (DOD) solution of updating a bunch of balls. const size_t ArraySize = 1000; class Ball { ...
3
votes
2answers
868 views

How to create an efficient static hash table?

I need to create small-mid sized static hash tables from it. Typically, those will have 5-100 entries. When the hash table is created, all keys hashes are known up-front (i.e. the keys are already ...
0
votes
0answers
283 views

Organizing Data Code In C# (w/ NHibernate)

I come from a PHP background doing it professionally for 5+ years now. I have always wanted to do web development in C# but hated WebForms and ASP.NET MVC was still not in a state where I really ...
0
votes
2answers
231 views

Which struct design has better spatial locality?

struct{ Vector3* centers; float* radii; float* colors; unsigned int size; }Spheres; versus struct Sphere{ Vector3 center; float radius; float color; }; struct{ ...
1
vote
2answers
1k views

How to apply DOP and keep a nice user interface?

Currently I want to optimize my 3d engine for consoles a bit. More precisely I want to be more cache friendly and align my structures more data oriented, but also want to keep my nice user interface. ...
6
votes
2answers
1k views

Data-oriented design in practice?

There has been one more question on what data-oriented design is, and there's one article which is often referred to (and I've read it like 5 or 6 times already). I understand the general concept of ...
0
votes
1answer
88 views

Is there any Tables lib/code for in memory manipulation in C++

I've started doing my own "struct of arrays" coding, but wondered if anyone knew of libs or templates that were already out there for doing intense data transform stuff on memory constrained hardware. ...
5
votes
1answer
426 views

Branchless memory manager?

Anyone thought about how to write a memory manager (in C++) that is completely branch free? I've written a pool, a stack, a queue, and a linked list (allocating from the pool), but I am wondering how ...
2
votes
1answer
689 views

Learning about Data Oriented Design

http://gamesfromwithin.com/data-oriented-design I'm a bit fan of the article above. Where can I learn more about this? Anyone suggest a textbook, series of articles, or source code base to read?
31
votes
3answers
12k views

What is data oriented design?

I was reading this article (note: click the magnifying glass to zoom to be able to read it), and this guy goes on talking about how everyone can greatly benefit from mixing in data oriented design ...