//! Global registry access: OnceLock-based singleton for shape inference.
use ShapeInferenceRegistry;
use OnceLock;
static GLOBAL_REGISTRY: = new;
/// Get the global shape inference registry.
///
/// Initializes the registry on first access (lazy initialization).
/// Initialize the global registry (called automatically on first access).
///
/// This function can be called explicitly to eagerly initialize the registry
/// during application startup, avoiding first-call latency in hot paths.