rj00a / evenio

An event-driven Entity Component System
MIT License
137 stars 14 forks source link

Chunked parallel iterators #34

Open rj00a opened 7 months ago

rj00a commented 7 months ago

Parallel iterators on Fetcher do parallelism per item and let rayon take care of the rest. But it's probably faster to divide the work into core count chunks and then parallelize over those, since the amount of work per item is likely to be similar in most cases.