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 60964fd commit e924fdeCopy full SHA for e924fde
1 file changed
cuda_core/cuda/core/_graph/_graph_builder.pyx
@@ -818,6 +818,7 @@ class Graph:
818
with nogil:
819
err = cydriver.cuGraphExecUpdate(cu_exec, cu_graph, &result_info)
820
if err != cydriver.CUresult.CUDA_SUCCESS:
821
+ assert err == cydriver.CUresult.CUDA_ERROR_GRAPH_EXEC_UPDATE_FAILURE
822
reason = driver.CUgraphExecUpdateResult(result_info.result)
823
msg = f"Graph update failed: {reason.__doc__.strip()} ({reason.name})"
824
raise CUDAError(msg)
0 commit comments