hive_gpu/backends/
mod.rs

1//! GPU Backend Detection and Management
2//!
3//! This module provides automatic detection and management of different GPU backends:
4//! - Metal (Apple Silicon)
5//! - CUDA (NVIDIA)
6//! - CPU (fallback)
7
8pub mod detector;
9
10pub use detector::{GpuBackendType, detect_available_backends, select_best_backend};