Skip to content

Commit

Permalink
Pin to working ucx
Browse files Browse the repository at this point in the history
  • Loading branch information
vyasr committed Sep 6, 2023
1 parent e7da424 commit 25bcbe8
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
7 changes: 7 additions & 0 deletions conda/recipes/ucx-py/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
{% set version = environ.get('GIT_DESCRIBE_TAG', '0.0.0.dev').lstrip('v') %}
{% set py_version = environ['CONDA_PY'] %}
{% set cuda_version = '.'.join(environ['RAPIDS_CUDA_VERSION'].split('.')[:2]) %}
{% set cuda_major = cuda_version.split('.')[0] %}
{% set date_string = environ['RAPIDS_DATE_STRING'] %}

package:
Expand All @@ -27,7 +28,13 @@ requirements:
host:
- python
- pip
{% if cuda_major == "11" %}
- ucx
{% else %}
# Temporary pin because the subsequent build (h64cca9d_3) is missing proper
# CUDA support
- ucx==1.14.1=h195a15c_3
{% endif %}
{% for r in data.get("build-system", {}).get("requires", []) %}
- {{ r }}
{% endfor %}
Expand Down
16 changes: 13 additions & 3 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,19 @@ dependencies:
packages:
- numpy>=1.21
- pynvml>=11.4.1
- output_types: [conda]
packages:
- ucx
specific:
- output_types: conda
matrices:
- matrix:
cuda: "12.0"
packages:
# Temporary pin because the subsequent build (h64cca9d_3) is
# missing proper CUDA support
- ucx==1.14.1=h195a15c_3
- matrix:
cuda: "11.8"
packages:
- ucx
test_python:
common:
- output_types: [conda, requirements, pyproject]
Expand Down

0 comments on commit 25bcbe8

Please sign in to comment.