// gpu/mod.rs — GPU compute module for wasm4pm process mining
//
// This module provides GPU-accelerated inference for the LinUCB contextual
// bandit algorithm (resource/intervention prediction perspective).
//
// Compilation:
// - Always available: LinUcbState, LogFeatures, LinUcbResult, cpu_infer, select_algorithm
// - GPU-only: GpuLinUcb, gpu_infer_batch (requires feature = "gpu")
//
// The WGSL kernel (linucb_kernel.wgsl) is embedded at compile time via
// `include_str!()` in wgpu_binding.rs.
// Re-export the primary public API surface
pub use ;
pub use GpuLinUcb;