From 23c9b15b540037446169cdf0ccf50039b5761bdc Mon Sep 17 00:00:00 2001 From: Vyas Ramasubramani Date: Tue, 13 Dec 2022 09:13:54 -0800 Subject: [PATCH 1/2] [HOTFIX] Fix pinnings for dask. (#1082) The pip package pinnings were missed in #1062. Authors: - Vyas Ramasubramani (https://github.com/vyasr) Approvers: - Ben Frederickson (https://github.com/benfred) - GALI PREM SAGAR (https://github.com/galipremsagar) - Corey J. Nolet (https://github.com/cjnolet) --- CHANGELOG.md | 2 +- python/raft-dask/setup.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 17034e7849..4ff454f7a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,7 +12,7 @@ - fusedL2NN: Add input alignment checks ([#1045](https://github.com/rapidsai/raft/pull/1045)) [@achirkin](https://github.com/achirkin) - Fix fusedL2NN bug that can happen when the same point appears in both x and y ([#1040](https://github.com/rapidsai/raft/pull/1040)) [@Nyrio](https://github.com/Nyrio) - Fix trivial deprecated header includes ([#1034](https://github.com/rapidsai/raft/pull/1034)) [@achirkin](https://github.com/achirkin) -- Suppres ptxas stack size warning in Debug mode ([#1033](https://github.com/rapidsai/raft/pull/1033)) [@tfeher](https://github.com/tfeher) +- Suppress ptxas stack size warning in Debug mode ([#1033](https://github.com/rapidsai/raft/pull/1033)) [@tfeher](https://github.com/tfeher) - Don't use CMake 3.25.0 as it has a FindCUDAToolkit show stopping bug ([#1029](https://github.com/rapidsai/raft/pull/1029)) [@robertmaynard](https://github.com/robertmaynard) - Fix for gemmi deprecation ([#1020](https://github.com/rapidsai/raft/pull/1020)) [@lowener](https://github.com/lowener) - Remove make_mdspan template for memory_type enum ([#1005](https://github.com/rapidsai/raft/pull/1005)) [@wphicks](https://github.com/wphicks) diff --git a/python/raft-dask/setup.py b/python/raft-dask/setup.py index bef3f41b4b..3171867928 100644 --- a/python/raft-dask/setup.py +++ b/python/raft-dask/setup.py @@ -26,10 +26,10 @@ "numpy", "numba>=0.49", "joblib>=0.11", - "dask-cuda>=22.10", - "dask>=2022.9.1", + "dask-cuda==22.12", + "dask==2022.11.1", f"ucx-py{cuda_suffix}", - "distributed>=2022.9.1", + "distributed==2022.11.1", f"pylibraft{cuda_suffix}", ] From cb5e61dbf1786b10b3b5e40d877b4b7cc30e06e4 Mon Sep 17 00:00:00 2001 From: William Hicks Date: Wed, 14 Dec 2022 10:22:26 -0500 Subject: [PATCH 2/2] Pin libcusparse and libcusolver to avoid CUDA 12 (#1097) Authors: - William Hicks (https://github.com/wphicks) Approvers: - Ray Douglass (https://github.com/raydouglass) --- conda/recipes/libraft/conda_build_config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conda/recipes/libraft/conda_build_config.yaml b/conda/recipes/libraft/conda_build_config.yaml index fc77dfc89b..facb478562 100644 --- a/conda/recipes/libraft/conda_build_config.yaml +++ b/conda/recipes/libraft/conda_build_config.yaml @@ -20,10 +20,10 @@ gtest_version: - "=1.10.0" libcusolver_version: - - ">=11.2.1" + - ">=11.2.1,<=11.4.1.48" libcusparse_version: - - ">=11.5.0" + - ">=11.5.0,<12.0" libfaiss_version: - "1.7.0 *_cuda"