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 7fde00e commit 2298435Copy full SHA for 2298435
cuda_bindings/cuda/bindings/nvjitlink.pyx
@@ -72,6 +72,13 @@ cdef int check_status(int status) except 1 nogil:
72
###############################################################################
73
74
cpdef destroy(intptr_t handle):
75
+ """nvJitLinkDestroy frees the memory associated with the given handle.
76
+
77
+ Args:
78
+ handle (intptr_t): nvJitLink handle.
79
80
+ .. seealso:: `nvJitLinkDestroy`
81
+ """
82
cdef Handle h = <Handle>handle
83
with nogil:
84
status = nvJitLinkDestroy(&h)
0 commit comments