Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update raft import #2729

Merged
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.
Jump to
Jump to file
Failed to load files.
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