Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion python/cugraph/cugraph/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@

from cugraph.linear_assignment import hungarian, dense_hungarian
from cugraph.layout import force_atlas2
from raft import raft_include_test
from raft_dask import raft_include_test

from cugraph.sampling import (
random_walks,
Expand Down
2 changes: 1 addition & 1 deletion python/cugraph/cugraph/dask/common/input_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
# not available. They are necessary only when doing MG work.
from cugraph.dask.common.read_utils import MissingUCXPy
try:
from raft.dask.common.utils import get_client
from raft_dask.common.utils import get_client
except ImportError as err:
# FIXME: Generalize since err.name is arr when
# libnuma.so.1 is not available
Expand Down
2 changes: 1 addition & 1 deletion python/cugraph/cugraph/dask/common/mg_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# not available. They are necessary only when doing MG work.
from cugraph.dask.common.read_utils import MissingUCXPy
try:
from raft.dask.common.utils import default_client
from raft_dask.common.utils import default_client
except ImportError as err:
# FIXME: Generalize since err.name is arr when
# libnuma.so.1 is not available
Expand Down
4 changes: 2 additions & 2 deletions python/cugraph/cugraph/dask/comms/comms.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
# not available. They are necessary only when doing MG work.
from cugraph.dask.common.read_utils import MissingUCXPy
try:
from raft.dask.common.comms import Comms as raftComms
from raft.dask.common.comms import get_raft_comm_state
from raft_dask.common.comms import Comms as raftComms
from raft_dask.common.comms import get_raft_comm_state
except ImportError as err:
# FIXME: Generalize since err.name is arr when
# libnuma.so.1 is not available
Expand Down