Crates.io | dagga |
lib.rs | dagga |
version | 0.2.1 |
source | src |
created_at | 2023-03-11 22:01:30.397584 |
updated_at | 2023-07-15 08:11:17.58317 |
description | For scheduling directed acyclic graphs of nodes that create, read, write and consume resources. |
homepage | |
repository | https://github.com/schell/dagga |
max_upload_size | |
id | 807561 |
size | 51,670 |
A crate for scheduling directed acyclic graphs.
creates
resources semanticsreads
resource semantics, ie borrowwrites
resource semantics, ie mutable/exclusive borrowconsumes
resource semantics, ie moveuse dagga::*;
// Create names/values for our resources.
//
// These represent the types of the resources that get created, passed through
// and consumed by each node.
let [a, b, c, d]: [usize; 4] = [0, 1, 2, 3];
// Add the nodes with their dependencies and build the schedule.
// The order they are added should not matter (it may cause differences in
// scheduling, but always result in a valid schedule).
let dag = Dag::<(), usize>::default()
.with_node({
// This node results in the creation of an `a`.
Node::new(()).with_name("create-a").with_result(a)
})
.with_node({
// This node creates a `b`.
Node::new(()).with_name("create-b").with_result(b)
})
.with_node({
// This node reads `a` and `b` and results in `c`
Node::new(())
.with_name("create-c")
.with_read(a)
.with_read(b)
.with_result(c)
})
.with_node({
// This node modifies `a`, but for reasons outside of the scope of the types
// expressed here (just as an example), it must be run before
// "create-c". There is no result of this node beside the side-effect of
// modifying `a`.
Node::new(())
.with_name("modify-a")
.with_write(a)
.with_read(b)
.run_before("create-c")
})
.with_node({
// This node consumes `a`, `b`, `c` and results in `d`.
Node::new(())
.with_name("reduce-abc-to-d")
.with_move(a)
.with_move(b)
.with_move(c)
.with_result(d)
});
dagga::assert_batches(
&[
"create-a, create-b", /* each batch can be run in parallel w/o violating
* exclusive borrows */
"modify-a",
"create-c",
"reduce-abc-to-d",
],
dag.clone(),
);
You can also have dagga
create a dot graph file to visualize the schedule (using graphiz or similar):