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
//! Shader Management
//!
//! This module provides management and loading of GPU shaders for different platforms.

pub mod metal_shaders;
pub mod wgsl_shaders;

pub use metal_shaders::MetalShaderManager;
pub use wgsl_shaders::WgslShaderManager;