🧬 fn_graph

Crates.io docs.rs CI Coverage Status

Dynamically managed function graph execution.

This crate provides a FnGraph, where consumers can register a list of functions and their interdependencies. The graph can then return a stream of functions to iterate over either sequentially or concurrently. Any data dependencies required by the functions are guaranteed to not conflict according to borrowing rules.

There is additional flexibility that the type of functions is not limited to closures and functions, but any type that implements the [FnRes] and [FnMeta] traits.

Usage

Add the following to Cargo.toml

```toml fn_graph = "0.5.0"

Integrate with fn_meta and/or resman

fngraph = { version = "0.5.0", features = ["fnmeta"] } fngraph = { version = "0.5.0", features = ["resman"] } fngraph = { version = "0.5.0", features = ["fn_meta", "resman"] } ```

Rationale

Support there are three tasks, each represented by a function. Each function needs different data:

| Function | Data | | -------- | -------------------- | | f1 | &a, &b | | f2 | &a, &b, &mut c | | f3 | &mut a, &b, &mut c |

When scheduling parallel execution, it is valid to execute f1 and f2 in parallel, since data a and b are accessed immutably, and c is exclusively accessed by b. f3 cannot be executed in parallel with f1 or f2 as it requires exclusive access to both a and c.

For a small number of functions and data, manually writing code to schedule function execution is manageable. However, as the number of functions and data increases, so does its complexity, and it is desirable for this boilerplate to be managed by code.

Notes

The concept of a runtime managed data-dependency task graph is from [shred]; fn_graph's implementation has the following differences:

See Also

License

Licensed under either of

at your option.

Contribution

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.