You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This defeats the purpose of RAFT and creates room for conflicts. Notice that for the handle, Raft provides a wrapper for 7 member function while cuGraph added only one.
Task list:
Get rid of the duplicate handle binding
Update files to import from raft : from cugraph.raft.common.handle cimport *
Check for other duplicate and update
Move generic features like move outside of the graph_prims.px* after checking this is not already in raft
The text was updated successfully, but these errors were encountered:
- Stream synchronization behavior: switched to per-thread default stream instead of the legacy default stream
- Update raft tag
- EgoNet upgrade to use `uvector` instead of `device_vector`
- EgoNet upgrade to execute on a different stream for each seed
- Perf analysis timers/app for EgoNet
Concurrency is limited by the number of available blocks on the device. Thrust-based codes may request a lot of blocks without a way to control this. In practice, smaller graphs leverage concurrency better than larger ones where tasks may end up waiting for available resources.
We may wait on #1407 before reconciling and merging this
Close#957
Authors:
- Alex Fender (@afender)
Approvers:
- Seunghwa Kang (@seunghwak)
- Andrei Schaffer (@aschaffer)
URL: #1435
Raft cython/python features are implemented and deployed from RAFT (see https://github.com/rapidsai/raft/blob/branch-0.18/BUILD.md#pythoncython-integration)
cuGraph should not add or duplicate bindings as seen for the handle:
cugraph/python/cugraph/structure/graph_primtypes.pxd
Line 28 in 2743020
This defeats the purpose of RAFT and creates room for conflicts. Notice that for the handle, Raft provides a wrapper for 7 member function while cuGraph added only one.
Task list:
from cugraph.raft.common.handle cimport *
move
outside of the graph_prims.px* after checking this is not already in raftThe text was updated successfully, but these errors were encountered: