16 releases
0.4.3 | Sep 20, 2024 |
---|---|
0.4.2 | Mar 31, 2024 |
0.3.8 | Dec 17, 2023 |
0.3.6 | Nov 28, 2023 |
0.1.0 | Apr 30, 2023 |
#26 in Rendering
21 downloads per month
Used in 2 crates
78KB
1.5K
SLoC
moongraph 🌙📈
moongraph
is a Rust library for scheduling, managing resources, and running directed acyclic graphs.
In moongraph
, graph nodes are normal Rust functions and graph edges are function parameters and function results.
The graph is built automatically by registering each function. moongraph
figures out how the functions connect by their parameters and their results.
moongraph
validates and schedules nodes to run in parallel where possible, using rayon
as the underlying parallelizing tech. This only happens when compiled with the "parallel" feature, on by default.
what
moongraph
is made up of two parts:
why
Scheduling and running DAGs is a common problem and I didn't find any prior art.
how
Read the introduction tutorial
uses
moongraph
is in use in a number of other libraries (let me know if you use it in yours, and how :))
- As the render graph in
renderling
, a scrappy real-time renderer with advanced lighting - Its scheduler is used for scheduling systems in
apecs
, a well-performing ECS with async integration.
💚 Sponsor this!
This work will always be free and open source. If you use it (outright or for inspiration), please consider donating.
License
Renderling is free and open source. All code in this repository is dual-licensed under either:
MIT License (LICENSE-MIT or http://opensource.org/licenses/MIT)
Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
at your option. This means you can select the license you prefer! This dual-licensing approach is the de-facto standard in the Rust ecosystem and there are very good reasons to include both.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
Dependencies
~1.6–2.5MB
~57K SLoC