kronos-compute 0.1.0

A high-performance compute-only Vulkan implementation with cutting-edge GPU optimizations
Documentation
1
2
3
4
5
6
7
8
//! Utilities for forwarding calls to real ICD

use crate::implementation::icd_loader;

/// Get the ICD if available
pub fn get_icd_if_enabled() -> Option<&'static icd_loader::LoadedICD> {
    icd_loader::get_icd()
}