kronos_compute/implementation/
forward.rs

1//! Utilities for forwarding calls to real ICD
2
3use crate::implementation::icd_loader;
4use std::sync::Arc;
5
6/// Get the ICD if available
7pub fn get_icd_if_enabled() -> Option<Arc<icd_loader::LoadedICD>> {
8    icd_loader::get_icd()
9}