cugraph icon indicating copy to clipboard operation
cugraph copied to clipboard

[BUG] Raft import changed

Open jnke2016 opened this issue 3 years ago • 0 comments

Describe the bug The new raft conda packages recently deployed are a breaking change for cuGraph as it substitutes raft with raft-dask and pylibraft. This breaks the way raft is currently imported as it can be observed from the error traceback below

>>> import raft
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named 'raft'

The new way of importing raft is described as below

>>> import raft_dask
>>> 

This change affect couple raft utils currently used by cugraph like the default_client, raftComms, get_raft_comm_state, and get_client

jnke2016 avatar Sep 23 '22 21:09 jnke2016