pub enum GPUError {
Opencl3(ClError, Option<String>),
ProgramInfoNotAvailable(ClError),
DeviceInfoNotAvailable(ClError),
Cuda(CudaError),
DeviceNotFound,
KernelNotFound(String),
IO(Error),
UnsupportedVendor(String),
InvalidId(String),
Generic(String),
}Expand description
Error types of this library.
Variants§
Opencl3(ClError, Option<String>)
Error from the underlying opencl3 library, e.g. a memory allocation failure.
ProgramInfoNotAvailable(ClError)
Error for OpenCL clGetProgramInfo() call failures.
DeviceInfoNotAvailable(ClError)
Error for OpenCL clGetDeviceInfo() call failures.
Cuda(CudaError)
Error from the underlying RustaCUDA library, e.g. a memory allocation failure.
DeviceNotFound
Error when a device cannot be found.
KernelNotFound(String)
Error when a kernel with the given name cannot be found.
IO(Error)
Error when standard I/O fails.
UnsupportedVendor(String)
Error when the device is from an unsupported vendor.
InvalidId(String)
Error when the string representation of a unique identifier (PCI-ID or UUID) cannot be parsed.
Generic(String)
Errors that rarely happen and don’t deserve their own error type.
Trait Implementations§
Source§impl Error for GPUError
impl Error for GPUError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for GPUError
impl !RefUnwindSafe for GPUError
impl Send for GPUError
impl Sync for GPUError
impl Unpin for GPUError
impl UnsafeUnpin for GPUError
impl !UnwindSafe for GPUError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more