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
// Simple test to verify all tooling exports compile
use taskflow_rs::{
    Profiler, 
    ExecutionProfile,
    TaskStats,
    PerformanceMetrics,
    DebugLogger,
    LogLevel,
    LogEntry,
    generate_dot_graph,
    generate_html_report,
};

fn main() {
    println!("All imports successful!");
}