From af98e3fbf0daacacd970307860fc47789db088f4 Mon Sep 17 00:00:00 2001 From: Peter Andreas Entschev Date: Thu, 12 Oct 2023 16:57:36 +0200 Subject: [PATCH] Update UCX pin, remove now redundant `ucx-proc` dependency (#686) Update UCX pin to require `ucx>=1.14.1` and remove the `ucx-proc` dependency which is now redundant as all newer UCX builds include CUDA support. Authors: - Peter Andreas Entschev (https://github.com/pentschev) Approvers: - Ray Douglass (https://github.com/raydouglass) URL: https://github.com/rapidsai/integration/pull/686 --- conda/recipes/rapids/meta.yaml | 1 - conda/recipes/versions.yaml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/conda/recipes/rapids/meta.yaml b/conda/recipes/rapids/meta.yaml index d8244520..b73b3a44 100644 --- a/conda/recipes/rapids/meta.yaml +++ b/conda/recipes/rapids/meta.yaml @@ -58,7 +58,6 @@ requirements: {% if cuda_major == "11" %} - ptxcompiler # CUDA enhanced compat. See https://github.com/rapidsai/ptxcompiler {% endif %} - - conda-forge::ucx-proc=*=gpu - conda-forge::ucx {{ ucx_version }} test: diff --git a/conda/recipes/versions.yaml b/conda/recipes/versions.yaml index c3dcd8ca..5dbeb191 100644 --- a/conda/recipes/versions.yaml +++ b/conda/recipes/versions.yaml @@ -21,4 +21,4 @@ numpy_version: nvtx_version: - '>=0.2.1,<0.3' ucx_version: - - '>=1.12.1' + - '>=1.14.1'