pub unsafe extern "C" fn hipGraphRemoveDependencies(
graph: hipGraph_t,
from: *const hipGraphNode_t,
to: *const hipGraphNode_t,
numDependencies: usize,
) -> hipError_t
Expand description
@brief Removes dependency edges from a graph.
@param [in] graph - instance of the graph to remove dependencies. @param [in] from - Array of nodes that provide the dependencies. @param [in] to - Array of dependent nodes. @param [in] numDependencies - the number of dependencies to remove. @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.