-
-
Notifications
You must be signed in to change notification settings - Fork 85
Open
Description
In CUDA 13.0, the graph edge related functions
cuGraphAddDependencies()cuGraphRemoveDependencies()cuGraphNodeGetDependencies()cuGraphNodeGetDependentNodes()cuGraphGetEdges()
have changed; they now take an array of edge data for each of the edges added or removed (for the removal function, the data is used to match edges - an edge with the same data must be found or the call fails).
We do not yet support passing or using edge data. Until we do, let us use these newer API functions with nullptr as the edge data (this is supported).