Multithreading for Games
#1 Members - Reputation: 110
Posted 06 February 2012 - 08:15 AM
Is multithreading nessecary for real time 3d games, because I´ve always done it in the way to call update and paint in a loop without threading.
So my question: Do I need to/should use multithreading or is it better without it?
Thanks in advance!
#2 Members - Reputation: 340
Posted 06 February 2012 - 08:47 AM
As I noted above, fundamentally, for simpler games, if you have any respectable amount of disk access, you, at the very minimum, should have a disk access thread that processes all disk-read jobs and queues completed read jobs for another thread for parallel processing while it processes the next disk read task.
A flag-based response system is based on the concept that any one thread AND ONLY THAT THREAD that is responsible for processing a task within the scope of a particular job can write into the memory space allocated for that particular task (parallel reads can still occur). Once the update completes, the thread sets the completion flag for the task. In the meantime, the main thread keeps polling all pending tasks for completion (by reading a boolean flag) and passes the task on to the next processing phase when the previous one completes. Consider three linearly dependent jobs that are distinct, but cannot be executed out of order:
TASK
job1: read file from disk (thread1)
job2: create alpha channel or whatever (thread2)
job3: copy texture to GPU (draw thread)
All of these steps can be parallelized for multiple load operations. The real benefit kicks in once you realize that job1 can do much faster reads since all reads are more likely to be sequential (other applications less likely to interrupt disk heads) and you're effectively making use of HDD access (which is the slowest link in the sequence) 90+% of the time, effectively winning the time spend on job2 and job3.
Any further parallelization really depends on your game and the complexity you need. Overall I think a task-based system is a simple and elegant solution that will scale automatically the more cores/threads the system has while still having the ability to fall back to a single core/thread if only one is available.
#3 Senior Moderators - Reputation: 1617
Posted 06 February 2012 - 09:08 AM
IceBreaker23, on 06 February 2012 - 08:15 AM, said:
If so, then you need to multi-thread your game. If not, then it might be fun as an academic exercise, but it's far from essential.
Correct multi-threading is hard, it's easy to introduce difficult-to-track-down bugs unintentionally, etc. so don't do it unless you feel there is a distinct benefit to be had.
#4 Members - Reputation: 560
Posted 07 February 2012 - 02:14 AM
irreversible, on 06 February 2012 - 08:47 AM, said:
swiftcoder, on 06 February 2012 - 09:08 AM, said:
If so, then you need to multi-thread your game.
#5 Members - Reputation: 178
Posted 07 February 2012 - 06:06 PM
Quote
Actually you may want more threads than cores. Consider a single-core cpu. It can still benefit from having multiple threads, especially if each thread is likely to block on something. If you have a single core, and 4 threads:
- game logic & render thread : constantly runs, 'interrupted' by occasional work in the other threads
- sound thread : will periodically do a 'spurt' of work processing audio every so often. most of the time it's waiting
- network thread : will spend most of its time blocked, waiting on a socket
- file thread: will spend most of its time either waiting for the game to ask to load something, or blocked on a slow disk operation
On a modern OS, when a thread is blocked on something, such as waiting for the disk to read something, the kernel will set that thread aside, and run something in the another thread. The above design already benefits a little bit from having a multi-core processor, but isn't ideal. Since most of the work is still happening in the game logic/render thread, it could be further broken out like this:
-Render thread (just 1. OGL doesn't like threads, DX might not either)
-file thread (just 1; don't thrash the disk)
-network thread (1 per socket, but the client will probably only have 1 socket open anyway)
-sound thread (just 1)
-game logic thread (1 or many)
There is a bit of a difference now. Before the game logic & render thread alternated between advancing the game state, and rendering. You could just lock the game state, and take turns processing the next gamestate and rendering. At a first glance, it doesn't need any better than just having them share a thread, except with multiple cores, you could alternate between having 4 cores process 4 game state threads, and then have 1 core render, 4 cores process game state, and 1 core render, etc. This starts to reap the benefits of having multi core; but now what are the other cores doing while you are rendering? Probably not much. This is the point where you have to do one of two things: 1) break the game state into pieces, so you can start rendering one part of the gamestate while you begin to compute the next part or 2) double-buffer the gamestate (or at least just the parts that affect rendering), so that you can have 3 cores processing the NEXT game state while you have the 4th core render the PREVIOUS gamestate.
But, given the scope of most hobby projects, just breaking out super-slow things (like disk access), and the most bottlenecked calculations (physics etc) into seperate threads will give you the most benefit with the least effort (and bugs), which is more important than trying to achieve 100% cpu temperature.
#6 Moderators - Reputation: 3228
Posted 07 February 2012 - 06:39 PM
DracoLacertae, on 07 February 2012 - 06:06 PM, said:
- game logic & render thread : constantly runs, 'interrupted' by occasional work in the other threads
- sound thread : will periodically do a 'spurt' of work processing audio every so often. most of the time it's waiting
- network thread : will spend most of its time blocked, waiting on a socket
- file thread: will spend most of its time either waiting for the game to ask to load something, or blocked on a slow disk operation
Also you usually don't create your sound thread yourself; it's usually created internally by your sound library and controlled via a non-blocking API.
So this just leaves the need for you to create your logic/rendering threads, which should simply just be your "one-thread-per-core general job/task processing" threads, which can run any logic/rendering/etc job (with rendering-submission jobs restricted to a specific thread if required).
Quote
irreversible, on 06 February 2012 - 08:47 AM, said:
#7 Members - Reputation: 561
Posted 08 February 2012 - 12:26 AM
Hodgman, on 07 February 2012 - 06:39 PM, said:
This is really more for my sake than anything, but I was under the impression that this tidbit only held for explicit calls to Sleep(), and things like WaitForSingleObject() and friends can potentially be more responsive?
#8 Members - Reputation: 767
Posted 08 February 2012 - 12:35 AM
1. Even with a single core CPU you already use a multicore system, that is CPU + GPU. You can utilize this by filling up the command queue of the GPU and then do some other tasks on the CPU. Until you don't use up this buffer (GPU is running, while CPU is idling) you don't need any multicore support (beside resource processing/loading).
2. When you want to add multicore support, you should start with it first. It is incredible hard to add multicore support later, some design decisions can easily steal the show (after writing 1000s of lines of gamelogic code in a scripting language like lua, it is somewhat demotivating to see, that lua doesn't support multicores in a single VM).
My game: Gnoblins
Developer journal about Gnoblins
Small goodies: Simple alpha transparency in deferred shader
#9 Moderators - Reputation: 3228
Posted 08 February 2012 - 01:01 AM
InvalidPointer, on 08 February 2012 - 12:26 AM, said:
I actually should've said "up to 15ms", because if you go to sleep right before the next tick, you'll get woken up quickly (i.e. somewhere between 0ms to 15ms). However, if there's too many threads, a ready thread might not be chosen to execute in any given 15ms tick, other threads can cause starvation. After a thread has starved for 3-5 seconds, the kernel will give it a priority boost to ensure it gets to run for at least one tick. So any time you block (with default settings), you're sleeping for a best case of 0-15ms, and a worst case of ~4 seconds.
On a side note, Sleep(0) is allowed to immediately return instead of sleeping for a tick (which is usually bad), if thread priorities allow for it.
#10 Members - Reputation: 767
Posted 08 February 2012 - 08:22 AM
Hodgman, on 08 February 2012 - 01:01 AM, said:
timeBeginPeriod(1); Sleep(1); timeEndPeriod(1);Is this a bad idea (too much overhead, slowing down the OS) ?
My game: Gnoblins
Developer journal about Gnoblins
Small goodies: Simple alpha transparency in deferred shader
#11 Members - Reputation: 1199
Posted 08 February 2012 - 08:30 AM
Ashaman73, on 08 February 2012 - 08:22 AM, said:
Hodgman, on 08 February 2012 - 01:01 AM, said:
timeBeginPeriod(1); Sleep(1); timeEndPeriod(1);Is this a bad idea (too much overhead, slowing down the OS) ?
Even if you change the timer resolution you still won't have any guarantees that a thread will wake up on time, (If you also boost the thread priority so it is higher priority than everything else on the system then it most likely will wake up on time though), only call timeBeginPeriod once early in the application:
Quote
Use caution when calling timeBeginPeriod, as frequent calls can significantly affect the system clock, system power usage, and the scheduler. If you call timeBeginPeriod, call it one time early in the application and be sure to call the timeEndPeriod function at the very end of the application.
The voices in my head may not be real, but they have some good ideas!
#12 Moderators - Reputation: 3228
Posted 08 February 2012 - 04:40 PM
Ashaman73, on 08 February 2012 - 08:22 AM, said:
timeBeginPeriod(1); Sleep(1); timeEndPeriod(1);Is this a bad idea (too much overhead, slowing down the OS) ?
Also, despite the bad guarantees for how long a Sleep(1) will last on Windows, there aren't many other good options if you have to put a thread to sleep -- e.g. if you've got two threads sharing one core, you'll have to sleep them at some point (especially if their priorities are different - in which case one could be starved until it get's it's priority boost after 3-5 seconds of starvation).
#13 Members - Reputation: 123
Posted 09 February 2012 - 07:48 AM
Use 1 thread for Drawing and 1 thread for Updating.
Because Update() can never communicate with the DirectX Device
you need two intermediate buffers per component (I call it DrawState)
var drawState = new DrawState[2];
Then you only need to synchronize the switch between blocks ... I use a array index:
lock { updateIndex = 0; drawIndex = 1; }
or
lock { updateIndex = 1; drawIndex = 0; }
and each Component accesses its DrawState like so:
Draw() { drawState = state[drawIndex]; }
Update() { drawState = state[updateIndex]; }
Once you have implemented this it can be trivial to add more threads to the Update() side
To summarise:
Update() only writes to one DrawState object
Draw() only reads from the other DrawState object
Every frame you switch / flip / toggle between the DrawState objects
I don't see the point in writing some games as single threaded and some as multithreaded when you can use this technique for all games.
#14 Members - Reputation: 125
Posted 12 February 2012 - 12:09 PM
Designing the framework of a parallel game engine
I'm still working on my engine but my idea so far is to have separate threads for the game logic and the rendering and audio. Then each thread spawns tasks each update. The rendering happens completely asynchronously from the game. I've never really been strong on the whole Model View Controller idea especially in games, but I ended up going with that kind of model naturally without even trying. The game thread has a controller that updates the entities, which are like the model. Then the renderer is like the view and has scene nodes that get updated by the controller.
Also PhysX 3 uses this kind of task based system which fits naturally into the multithreaded task processing architecture I'm going for.
#15 Members - Reputation: 108
Posted 12 February 2012 - 01:48 PM
As far as Civ was concerned, the moral of the story is to profile the application and various ways of doing things. I'm not sure you can write scalability like that in a generic way. Rather, it has to be done on a case-by-case basis, perhaps with constructs like `parallel for' and so on.
#16 Members - Reputation: 125
Posted 12 February 2012 - 03:25 PM
When all entities have updated at the end of the game loop, the central object notifies all entities that care about those entities about the changes. It also updates the visual side representation of the objects saying this object is now at this position and so on...
#17 Members - Reputation: 561
Posted 12 February 2012 - 09:35 PM
RobinsonUK, on 12 February 2012 - 01:48 PM, said:
You're Doing It Wrong™
Instead of shoehorning parallelism into an already explicitly serial design (trees and linked lists in general are inherently serial data structures; there's no effective way to traverse them in parallel without the threads stepping on each other's toes. Before you ask, skip lists are cheating/hacky) ask yourself if there are any alternative approaches that would instead scale well in a more threaded environment. As DICE found out when building their visibility system for Battlefield 3, the 'dumb' approach can certainly end up a lot faster than clinging to a conventional 'smart' solution simply because that's the way it's been done previously. Data is, ultimately, king
#18 Members - Reputation: 108
Posted 13 February 2012 - 06:58 AM
#19 Members - Reputation: 561
Posted 13 February 2012 - 11:47 AM
RobinsonUK, on 13 February 2012 - 06:58 AM, said:
On the surface, yes, you're bang on the money. You can certainly have multiple threads be traversing the 'physical' tree in memory without incident. Actually doing work on it, however, is a bit murky. Consider the case of arrays for a moment. You can do a blanket segregation at the beginning, maybe partitioning the whole thing out into n chunks (where n is defined as being at or around the number of physical processor cores on the target machine for simplicity's sake) and then have all your threads go in guns blazing. If your computations are otherwise embarrassingly parallel or you're doing some super scheduling cleverness, you can actually get away with no additional synchronization; threads can just do computation without ever needing to interact with one another. You can actually handle array modifications in a similar way by trying to provide some upper bound on work that each thread would do, segregating output slots ahead of time, then having all threads write their (potentially variable-width) output within that set of bounds. You can then coalesce everything in later (possibly also parallel) passes over that data-- this is actually a fairly common approach (though not often directly seen) used in graphics and it actually has a name: stream compaction. There's quite a bit of research dedicated to doing this effectively and I'd suggest some Google-fu if it sounds interesting, as it's a very broad topic mostly outside the scope of discussion.
So, bringing that massive (bi)tangent back to heel, we're back with the idea of work distribution for arrays vs. trees. This is actually somewhat more subtle, but the speed advantage of trees for searching comes directly from their hierarchical skipping of regions based on previous sorting. Since we're in a hierarchy, we don't actually know what region(s) we need to search next until we run the current set of computations; this really, really kills the parallelism factor since it introduces hard synchronization points, and frequently. You can task multiple queries through the structure and see some speedup there, but it's still the same sort of 'bolted-on' concurrency dead end as things like a 'physics/render thread.' It helps in edge cases, but it's very likely those edge cases won't be a limiting factor or even present at all for most of your processing time. As an example, parallel view queries won't help you if you only have one camera, but parallel queries in of themselves will benefit one camera or 10,000 equally.


















