|
|
|
|
|
by slashvar2701
2238 days ago
|
|
That's a somewhat misleading wording for a classic rule of parallel algorithm: a thread is the owner of its computations. So, each actor own a group of cells and is the only one able to modify them. This highly simplifies most algorithms, removes a lot of synchronization issues ... This is also why in parallel algorithm you should split the outputs rather than the inputs. |
|