Skip to content

Commit

Permalink
Merge pull request conda-forge#59 from pentschev/update-1.11.1
Browse files Browse the repository at this point in the history
Update to UCX 1.11.1
  • Loading branch information
jakirkham authored Sep 9, 2021
2 parents 32fa817 + 71e475a commit 12d6755
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 102 deletions.
4 changes: 2 additions & 2 deletions ci/axis/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ CONDA_USERNAME:
- rapidsai-nightly

UCX_VER:
- 1.9.0
- 1.11.1

UCX_COMMIT:
- v1.9.0
- v1.11.1

UCX_PROC_VER:
- 1.0.0
Expand Down
4 changes: 2 additions & 2 deletions ci/axis/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ CONDA_USERNAME:
- rapidsai

UCX_VER:
- 1.9.0
- 1.11.1

UCX_COMMIT:
- v1.9.0
- v1.11.1

UCX_PROC_VER:
- 1.0.0
Expand Down
90 changes: 0 additions & 90 deletions recipe/cuda-alloc-rcache.patch

This file was deleted.

14 changes: 6 additions & 8 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
#### START - Config version naming (right side is default value)
{% set ucx_version = environ.get("UCX_VER", "v1.9.0").lstrip('v').replace("-", "") %}
{% set ucx_version = environ.get("UCX_VER", "v1.11.1").lstrip('v').replace("-", "") %}
{% set ucx_number = environ.get("UCX_BUILD_NUMBER", 0) %}
{% set ucx_proc_version = environ.get("UCX_PROC_VER", "1.0.0") %}
{% set ucx_py_version = environ.get("UCX_PY_VER", "0.14a").lstrip('v') + environ.get('VERSION_SUFFIX', '') %}
{% set ucx_py_version = environ.get("UCX_PY_VER", "0.22").lstrip('v') + environ.get('VERSION_SUFFIX', '') %}
{% set ucx_py_number = environ.get("UCX_PY_BUILD_NUMBER", 0) %}
{% set cuda_version = '.'.join(environ.get('CUDA_VER', '9.2').split('.')[:2]) %}
{% set py_version = environ.get('CONDA_PY', '37') %}
{% set cuda_version = '.'.join(environ.get('CUDA_VER', '11.4').split('.')[:2]) %}
{% set py_version = environ.get('CONDA_PY', '38') %}
#### END - Config version naming

#### START - Config source commits (right side is default value)
{% set ucx_commit = environ.get("UCX_COMMIT", "cd9efd3") %}
{% set ucx_py_commit = environ.get("UCX_PY_COMMIT", "7cf2144") %}
{% set ucx_commit = environ.get("UCX_COMMIT", "c58db6b") %}
{% set ucx_py_commit = environ.get("UCX_PY_COMMIT", "9c11581") %}
#### END - Config source commits

{% set ucx_proc_type = "cpu" if cuda_compiler_version == "None" else "gpu" %}
Expand All @@ -23,8 +23,6 @@ source:
- git_url: https://github.com/openucx/ucx
git_rev: {{ ucx_commit }}
folder: ucx
patches:
- cuda-alloc-rcache.patch # [cuda_compiler_version != "None"]
- git_url: https://github.com/rapidsai/ucx-py
git_rev: {{ ucx_py_commit }}
folder: ucx-py
Expand Down

0 comments on commit 12d6755

Please sign in to comment.