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.
1 parent d687d94 commit bb2eab3Copy full SHA for bb2eab3
source/adapters/cuda/enqueue.cpp
@@ -722,10 +722,11 @@ UR_APIEXPORT ur_result_t UR_APICALL urEnqueueKernelLaunchCustomExp(
722
return Err;
723
}
724
return UR_RESULT_SUCCESS;
725
-#endif // CUDA_VERSION >= 11080
+#else
726
setErrorMessage("This feature requires cuda 11.8 or later.",
727
UR_RESULT_ERROR_ADAPTER_SPECIFIC);
728
return UR_RESULT_ERROR_ADAPTER_SPECIFIC;
729
+#endif // CUDA_VERSION >= 11080
730
731
732
/// Set parameters for general 3D memory copy.
0 commit comments