menu
ComputeErrorKind
import { ComputeErrorKind } from "destack:compute";
Compute failure category.
1export enum ComputeErrorKind {2 DeviceUnavailable = 1,3 Unsupported = 2,4 CompileFailed = 3,5 KernelNotFound = 4,6 InvalidArgument = 5,7 OutOfMemory = 6,8 Backend = 7,9}Variants
DeviceUnavailable = 1The requested device is unavailable.
Unsupported = 2The requested backend feature is unsupported.
CompileFailed = 3Program compilation failed.
KernelNotFound = 4The requested kernel entry point does not exist.
InvalidArgument = 5Kernel arguments do not match the entry point signature.
OutOfMemory = 6Device memory allocation failed.
Backend = 7The backend reported an implementation-specific failure.