From 6d8fb5ea7cc333d1fbd52882ea560500a6bce959 Mon Sep 17 00:00:00 2001 From: Vyas Ramasubramani Date: Thu, 8 Dec 2022 12:53:41 -0800 Subject: [PATCH 1/3] Fix pinnings for dask. --- python/raft-dask/setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python/raft-dask/setup.py b/python/raft-dask/setup.py index bef3f41b4b..814ca9792b 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.10", + "dask==2022.11.1", f"ucx-py{cuda_suffix}", - "distributed>=2022.9.1", + "distributed==2022.11.1", f"pylibraft{cuda_suffix}", ] From e8a3ae9990e58173a7de040fbb782d8507b877e9 Mon Sep 17 00:00:00 2001 From: Vyas Ramasubramani Date: Thu, 8 Dec 2022 12:57:26 -0800 Subject: [PATCH 2/3] Fix dask-cuda pinning. --- python/raft-dask/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/raft-dask/setup.py b/python/raft-dask/setup.py index 814ca9792b..3171867928 100644 --- a/python/raft-dask/setup.py +++ b/python/raft-dask/setup.py @@ -26,7 +26,7 @@ "numpy", "numba>=0.49", "joblib>=0.11", - "dask-cuda==22.10", + "dask-cuda==22.12", "dask==2022.11.1", f"ucx-py{cuda_suffix}", "distributed==2022.11.1", From bd0d83624a21ce2b16ca1dccb744777aa379201e Mon Sep 17 00:00:00 2001 From: Vyas Ramasubramani Date: Thu, 8 Dec 2022 13:02:25 -0800 Subject: [PATCH 3/3] Fix typo in changelog. --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)