Function hip_sys::hiprt::hipGraphAddMemsetNode
source · pub unsafe extern "C" fn hipGraphAddMemsetNode(
pGraphNode: *mut *mut hipGraphNode,
graph: *mut ihipGraph,
pDependencies: *const *mut hipGraphNode,
numDependencies: usize,
pMemsetParams: *const hipMemsetParams
) -> hipError_tExpand description
@brief Creates a memset node and adds it to a graph.
@param [out] pGraphNode - pointer to the graph node to create. @param [in] graph - instance of the graph to add the created node. @param [in] pDependencies - const pointer to the dependencies on the memset execution node. @param [in] numDependencies - the number of the dependencies. @param [in] pMemsetParams - const pointer to the parameters for the memory set. @returns #hipSuccess, #hipErrorInvalidValue @warning : This API is marked as beta, meaning, while this is feature complete, it is still open to changes and may have outstanding issues.