//! Crate-wide error aliases.
//!
//! Each backend defines its own concrete error type; this module re-exports
//! them under a common name for convenience.
pub use crateVulkanError;
pub use crateCudaError;
/// Shorthand for the default backend's error type.
///
/// Resolves to `VulkanError` when the `vulkan` feature is enabled, or
/// `CudaError` when only `cuda` is enabled.
pub type Error = VulkanError;
/// Shorthand for the default backend's error type (CUDA-only build).
pub type Error = CudaError;