We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ERRC_INVALID_BINARY
1 parent dde3359 commit a64212dCopy full SHA for a64212d
unified-runtime/source/adapters/offload/ur2offload.hpp
@@ -24,6 +24,8 @@ inline ur_result_t offloadResultToUR(ol_result_t Result) {
24
return UR_RESULT_ERROR_INVALID_NULL_POINTER;
25
case OL_ERRC_UNSUPPORTED:
26
return UR_RESULT_ERROR_UNSUPPORTED_ENUMERATION;
27
+ case OL_ERRC_INVALID_BINARY:
28
+ return UR_RESULT_ERROR_INVALID_BINARY;
29
// Returned whenever a kernel can't be found
30
case OL_ERRC_NOT_FOUND:
31
return UR_RESULT_ERROR_INVALID_KERNEL_NAME;
0 commit comments