pub unsafe extern "C" fn cuGraphNodeGetEnabled(
hGraphExec: CUgraphExec,
hNode: CUgraphNode,
isEnabled: *mut c_uint,
) -> CUresult
Expand description
\brief Query whether a node in the given graphExec is enabled
Sets isEnabled to 1 if \p hNode is enabled, or 0 if \p hNode is disabled.
The node is identified by the corresponding node \p hNode in the non-executable graph, from which the executable graph was instantiated.
\p hNode must not have been removed from the original graph.
\note Currently only kernel, memset and memcpy nodes are supported. \note This function will not reflect device-side updates for device-updatable kernel nodes.
\param hGraphExec - The executable graph in which to set the specified node \param hNode - Node from the graph from which graphExec was instantiated \param isEnabled - Location to return the enabled status of the node
\return ::CUDA_SUCCESS, ::CUDA_ERROR_INVALID_VALUE, \note_graph_thread_safety \notefnerr
\sa ::cuGraphNodeSetEnabled, ::cuGraphExecUpdate, ::cuGraphInstantiate ::cuGraphLaunch