Skip to content

Commit 2076eae

Browse files
authored
Merge pull request #2403 from rapidsai/branch-22.06
[RELEASE] v22.06.01
2 parents fb99d2d + 76800bc commit 2076eae

8 files changed

Lines changed: 17 additions & 11 deletions

File tree

conda/environments/cugraph_dev_cuda11.2.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dependencies:
1313
- librmm=22.06.*
1414
- libraft-headers=22.06.*
1515
- pyraft=22.06.*
16-
- cuda-python>=11.5,<12.0
16+
- cuda-python>=11.5,<11.7.1
1717
- dask==2022.05.2
1818
- distributed==2022.05.2
1919
- dask-cuda=22.06.*

conda/environments/cugraph_dev_cuda11.4.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dependencies:
1313
- librmm=22.06.*
1414
- libraft-headers=22.06.*
1515
- pyraft=22.06.*
16-
- cuda-python>=11.5,<12.0
16+
- cuda-python>=11.5,<11.7.1
1717
- dask==2022.05.2
1818
- distributed==2022.05.2
1919
- dask-cuda=22.06.*

conda/environments/cugraph_dev_cuda11.5.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dependencies:
1313
- librmm=22.06.*
1414
- libraft-headers=22.06.*
1515
- pyraft=22.06.*
16-
- cuda-python>=11.5,<12.0
16+
- cuda-python>=11.5,<11.7.1
1717
- dask==2022.05.2
1818
- distributed==2022.05.2
1919
- dask-cuda=22.06.*

conda/recipes/cugraph/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ requirements:
5454
- ucx-py {{ ucx_py_version }}
5555
- ucx-proc=*=gpu
5656
- {{ pin_compatible('cudatoolkit', max_pin='x', min_pin='x') }}
57-
- cuda-python >=11.5,<12.0
57+
- cuda-python >=11.5,<11.7.1
5858

5959
tests: # [linux64]
6060
requirements: # [linux64]

conda/recipes/libcugraph/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ requirements:
4141
- libraft-headers {{ minor_version }}.*
4242
- libcugraphops {{ minor_version }}.*
4343
- librmm {{ minor_version }}.*
44-
- cudf {{ minor_version }}.*
44+
- libcudf {{ minor_version }}.*
4545
- boost-cpp {{ boost_cpp_version }}
4646
- nccl {{ nccl_version }}
4747
- ucx-proc=*=gpu

python/cugraph/cugraph/dask/common/input_utils.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,10 @@
2525
from cugraph.dask.common.read_utils import MissingUCXPy
2626
try:
2727
from raft.dask.common.utils import get_client
28-
except ModuleNotFoundError as err:
29-
if err.name == "ucp":
28+
except ImportError as err:
29+
# FIXME: Generalize since err.name is arr when
30+
# libnuma.so.1 is not available
31+
if err.name == "ucp" or err.name == "arr":
3032
get_client = MissingUCXPy()
3133
else:
3234
raise

python/cugraph/cugraph/dask/common/mg_utils.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,10 @@
2323
from cugraph.dask.common.read_utils import MissingUCXPy
2424
try:
2525
from raft.dask.common.utils import default_client
26-
except ModuleNotFoundError as err:
27-
if err.name == "ucp":
26+
except ImportError as err:
27+
# FIXME: Generalize since err.name is arr when
28+
# libnuma.so.1 is not available
29+
if err.name == "ucp" or err.name == "arr":
2830
default_client = MissingUCXPy()
2931
else:
3032
raise

python/cugraph/cugraph/dask/comms/comms.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,10 @@
1717
try:
1818
from raft.dask.common.comms import Comms as raftComms
1919
from raft.dask.common.comms import get_raft_comm_state
20-
except ModuleNotFoundError as err:
21-
if err.name == "ucp":
20+
except ImportError as err:
21+
# FIXME: Generalize since err.name is arr when
22+
# libnuma.so.1 is not available
23+
if err.name == "ucp" or err.name == "arr":
2224
raftComms = MissingUCXPy()
2325
get_raft_comm_state = MissingUCXPy()
2426
else:

0 commit comments

Comments
 (0)