ringkernel_procint/kernels/
mod.rs

1//! GPU kernel implementations for process intelligence.
2//!
3//! Provides kernels for DFG construction, pattern detection,
4//! partial order derivation, and conformance checking.
5
6mod conformance;
7mod dfg_construction;
8mod partial_order;
9mod pattern_detection;
10
11pub use conformance::*;
12pub use dfg_construction::*;
13pub use partial_order::*;
14pub use pattern_detection::*;