ringkernel_accnet/kernels/mod.rs
1//! GPU kernels for accounting network analysis.
2//!
3//! This module contains Rust DSL implementations that can be transpiled
4//! to CUDA or WGSL for GPU execution.
5//!
6//! ## Kernel Categories
7//!
8//! 1. **Journal Transformation** - Methods A-E for converting entries to flows
9//! 2. **Network Analysis** - Suspense detection, GAAP violations, fraud patterns
10//! 3. **Temporal Analysis** - Seasonality, trends, behavioral anomalies
11//!
12//! ## Method Distribution (Ivertowski et al., 2024)
13//!
14//! | Method | Description | Frequency |
15//! |--------|-------------|-----------|
16//! | A | 1-to-1 debit→credit | 60.68% |
17//! | B | n-to-n bijective | 16.63% |
18//! | C | n-to-m partition | 11.00% |
19//! | D | Higher aggregate | 11.00% |
20//! | E | Decomposition | 0.69% |
21
22pub mod analysis;
23pub mod temporal;
24pub mod transformation;
25
26pub use analysis::*;
27pub use temporal::*;
28pub use transformation::*;