From f09c2983fb8cb442eb3aa3b916ee1aac9da15c99 Mon Sep 17 00:00:00 2001 From: Joseph Nke <76006812+jnke2016@users.noreply.github.com> Date: Thu, 21 Jul 2022 02:17:26 -0500 Subject: [PATCH] Remove the comms import from cugraph's init file (#2402) 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 #2379 closes #2329 Authors: - Joseph Nke (https://github.com/jnke2016) Approvers: - Rick Ratzel (https://github.com/rlratzel) URL: https://github.com/rapidsai/cugraph/pull/2402 --- python/cugraph/cugraph/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/python/cugraph/cugraph/__init__.py b/python/cugraph/cugraph/__init__.py index ff8694361f0..e0ec34c51cd 100644 --- a/python/cugraph/cugraph/__init__.py +++ b/python/cugraph/cugraph/__init__.py @@ -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,