1 2 3 4 5 6 7 8 9 10 11
//! GPU solver backends. #[cfg(feature = "cuda-backend")] pub mod cuda; #[cfg(all(feature = "metal-backend", target_os = "macos"))] pub mod metal; #[cfg(feature = "gpu-opencl")] pub mod opencl; #[cfg(feature = "gpu-wgpu")] pub mod wgpu;