22 releases (11 breaking)

0.13.2 Apr 4, 2024
0.13.1 Mar 18, 2024
0.13.0 Feb 17, 2024
0.12.1 Nov 30, 2023
0.3.0 Nov 3, 2020

#1925 in Game dev

Download history 9503/week @ 2024-01-03 12144/week @ 2024-01-10 12114/week @ 2024-01-17 10247/week @ 2024-01-24 9714/week @ 2024-01-31 11895/week @ 2024-02-07 16607/week @ 2024-02-14 15891/week @ 2024-02-21 16046/week @ 2024-02-28 15699/week @ 2024-03-06 14413/week @ 2024-03-13 18814/week @ 2024-03-20 16109/week @ 2024-03-27 17941/week @ 2024-04-03 15498/week @ 2024-04-10 14382/week @ 2024-04-17

67,123 downloads per month
Used in 1,073 crates (31 directly)

MIT/Apache

91KB
1.5K SLoC

Bevy Tasks

License Crates.io Downloads Docs Discord

A refreshingly simple task executor for bevy. :)

This is a simple threadpool with minimal dependencies. The main usecase is a scoped fork-join, i.e. spawning tasks from a single thread and having that thread await the completion of those tasks. This is intended specifically for bevy as a lighter alternative to rayon for this specific usecase. There are also utilities for generating the tasks from a slice of data. This library is intended for games and makes no attempt to ensure fairness or ordering of spawned tasks.

It is based on async-executor, a lightweight executor that allows the end user to manage their own threads. async-executor is based on async-task, a core piece of async-std.

Usage

In order to be able to optimize task execution in multi-threaded environments, bevy provides three different thread pools via which tasks of different kinds can be spawned. (The same API is used in single-threaded environments, even if execution is limited to a single thread. This currently applies to WASM targets.) The determining factor for what kind of work should go in each pool is latency requirements:

  • For CPU-intensive work (tasks that generally spin until completion) we have a standard ComputeTaskPool and an AsyncComputeTaskPool. Work that does not need to be completed to present the next frame should go to the AsyncComputeTaskPool.

  • For IO-intensive work (tasks that spend very little time in a "woken" state) we have an IoTaskPool whose tasks are expected to complete very quickly. Generally speaking, they should just await receiving data from somewhere (i.e. disk) and signal other systems when the data is ready for consumption. (likely via channels)

Dependencies

~0.8–12MB
~115K SLoC