Skip to main content

Module kernels

Module kernels 

Source
Expand description

GPU kernels for accounting network analysis.

This module contains Rust DSL implementations that can be transpiled to CUDA or WGSL for GPU execution.

§Kernel Categories

  1. Journal Transformation - Methods A-E for converting entries to flows
  2. Network Analysis - Suspense detection, GAAP violations, fraud patterns
  3. Temporal Analysis - Seasonality, trends, behavioral anomalies

§Method Distribution (Ivertowski et al., 2024)

MethodDescriptionFrequency
A1-to-1 debit→credit60.68%
Bn-to-n bijective16.63%
Cn-to-m partition11.00%
DHigher aggregate11.00%
EDecomposition0.69%

Re-exports§

pub use analysis::*;
pub use temporal::*;
pub use transformation::*;

Modules§

analysis
Network analysis kernels for fraud detection and GAAP compliance.
temporal
Temporal analysis kernels for time-series anomaly detection.
transformation
Journal entry transformation kernels (Methods A-E).