gam_inference/util/loop_progress.rs
1//! Low-overhead progress ticker for long parallel loops.
2//!
3//! This util is single-sourced in the `gam-runtime` crate (the runtime layer
4//! shared by the sibling crates that consume it). This module re-exports it so
5//! existing `crate::util::loop_progress::*` paths keep resolving without a
6//! second, drift-prone copy of the definitions.
7pub use gam_runtime::loop_progress::*;