taskflowrs 0.1.1

A Rust implementation of TaskFlow — task-parallel programming with heterogeneous GPU support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// ── New module declarations (add to src/lib.rs) ──────────────────────────────
//
// Add these three lines to the module declarations section:

pub mod dashboard;
pub mod flamegraph;
pub mod regression;

// ── New pub use re-exports (add to the pub use section) ──────────────────────

pub use dashboard::{DashboardConfig, DashboardHandle, DashboardServer};
pub use flamegraph::{FlamegraphConfig, FlamegraphGenerator};
pub use regression::{
    Baseline, MetricComparison, RegressionDetector, RegressionReport, RegressionThresholds,
    Severity, Violation,
};