Crates.io | partopo |
lib.rs | partopo |
version | 0.1.0 |
source | src |
created_at | 2022-07-21 23:14:16.605805 |
updated_at | 2022-07-21 23:14:16.605805 |
description | Functions to execute work described by a dependency graph |
homepage | https://github.com/kesyog/partopo |
repository | https://github.com/kesyog/partopo |
max_upload_size | |
id | 629914 |
size | 22,644 |
Execute work described by a dependency graph using either a single-threaded worker or in parallel using a threadpool.
This is an implementation of Kahn's algorithm for topological sorting minimally adapted to be run in parallel.
use partopo::{Dag, Node};
use std::time::Instant;
use std::{thread, time::Duration};
// Construct a DAG:
// 1 -> 2
// 1 -> 3
// 4 -> 5
// 2 -> 5
let mut dag: Dag<usize> = Dag::new();
let idx1 = dag.add_node(Node::new(1));
let (_, idx2) = dag.add_child(idx1, (), Node::new(2));
let (_, _idx3) = dag.add_child(idx1, (), Node::new(3));
let idx4 = dag.add_node(Node::new(4));
let (_, idx5) = dag.add_child(idx4, (), Node::new(5));
dag.add_edge(idx2, idx5, ()).unwrap();
// Example work function
fn do_work(data: usize) {
thread::sleep(Duration::from_millis(1000));
println!("{}", data);
}
// Execute work on a threadpool
partopo::par_execute(dag, do_work);
This is not an officially supported Google product