Skip to content

Commit

Permalink
Remove the comms import from cugraph's init file (rapidsai#2402)
Browse files Browse the repository at this point in the history
A breaking change in 22.06 moved the functionalities of `comms` to `cugraph/dask` where it should belong as it is only part of the multi GPU API. However `cugraph/__init__.py` is still importing the the comms when it shouldn't.

This PR removes the `comms` import in `cugraph/__init__.py `

closes rapidsai#2379
closes rapidsai#2329

Authors:
  - Joseph Nke (https://github.com/jnke2016)

Approvers:
  - Rick Ratzel (https://github.com/rlratzel)

URL: rapidsai#2402
  • Loading branch information
jnke2016 authored Jul 21, 2022
1 parent 656638d commit f09c298
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion python/cugraph/cugraph/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@
from cugraph.linear_assignment import hungarian, dense_hungarian
from cugraph.layout import force_atlas2
from raft import raft_include_test
from cugraph.dask.comms import comms

from cugraph.sampling import (
random_walks,
Expand Down

0 comments on commit f09c298

Please sign in to comment.