hive-gpu 0.2.0

High-performance GPU acceleration for vector operations with Device Info API (Metal, CUDA, ROCm)
Documentation
1
2
3
4
5
6
7
8
9
10
//! GPU Backend Detection and Management
//!
//! This module provides automatic detection and management of different GPU backends:
//! - Metal (Apple Silicon)
//! - CUDA (NVIDIA)
//! - CPU (fallback)

pub mod detector;

pub use detector::{GpuBackendType, detect_available_backends, select_best_backend};