Skip to content

Commit

Permalink
Merge pull request #411 from AyodeAwe/ops-1933
Browse files Browse the repository at this point in the history
Add CUDA 11.1 & 11.3 support to integration
  • Loading branch information
AyodeAwe authored Jan 13, 2022
2 parents abc4591 + 760cbac commit cd6e167
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 26 deletions.
2 changes: 0 additions & 2 deletions ci/axis/nightly-env-arm64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ RAPIDS_VER:
# Use CUDA_VER to not clobber `CUDA_VERSION` in the container
CUDA_VER:
- 11.5
- 11.4
- 11.2

PYTHON_VER:
- 3.7
Expand Down
3 changes: 0 additions & 3 deletions ci/axis/nightly-env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ RAPIDS_VER:
# Use CUDA_VER to not clobber `CUDA_VERSION` in the container
CUDA_VER:
- 11.5
- 11.4
- 11.2
- 11.0

PYTHON_VER:
- 3.7
Expand Down
2 changes: 0 additions & 2 deletions ci/axis/nightly-meta-arm64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ RAPIDS_VER:
# Use CUDA_VER to not clobber `CUDA_VERSION` in the container
CUDA_VER:
- 11.5
- 11.4
- 11.2

PYTHON_VER:
- 3.7
Expand Down
3 changes: 0 additions & 3 deletions ci/axis/nightly-meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ RAPIDS_VER:
# Use CUDA_VER to not clobber `CUDA_VERSION` in the container
CUDA_VER:
- 11.5
- 11.4
- 11.2
- 11.0

PYTHON_VER:
- 3.7
Expand Down
2 changes: 0 additions & 2 deletions ci/axis/release-arm64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ RAPIDS_VER:
# Use CUDA_VER to not clobber `CUDA_VERSION` in the container
CUDA_VER:
- 11.5
- 11.4
- 11.2

PYTHON_VER:
- 3.7
Expand Down
3 changes: 0 additions & 3 deletions ci/axis/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ RAPIDS_VER:
# Use CUDA_VER to not clobber `CUDA_VERSION` in the container
CUDA_VER:
- 11.5
- 11.4
- 11.2
- 11.0

PYTHON_VER:
- 3.7
Expand Down
3 changes: 0 additions & 3 deletions ci/axis/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ RAPIDS_VER:

CUDA_VER:
- 11.5
- 11.4
- 11.2
- 11.0

LINUX_VER:
- ubuntu18.04
Expand Down
5 changes: 3 additions & 2 deletions conda/recipes/rapids-build-env/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
{% set minor_version = rapids_version.split('.')[0] + '.' + rapids_version.split('.')[1] %}
{% set cuda_version = '.'.join(environ.get('CUDA_VER', '10.0').split('.')[:2]) %}
{% set py_version = environ.get('CONDA_PY', 36) %}
{% set cuda_major=cuda_version.split('.')[0] %}

###
# Versions referenced below are set in `conda/recipe/*versions.yaml` except for
Expand All @@ -25,7 +26,7 @@ source:

build:
number: {{ GIT_DESCRIBE_NUMBER }}
string: cuda{{ cuda_version }}_py{{ py_version }}_{{ GIT_DESCRIBE_HASH }}_{{ GIT_DESCRIBE_NUMBER }}
string: cuda{{ cuda_major }}_py{{ py_version }}_{{ GIT_DESCRIBE_HASH }}_{{ GIT_DESCRIBE_NUMBER }}
script_env:
- CUDA_VERSION
- RAPIDS_VER
Expand Down Expand Up @@ -56,7 +57,7 @@ requirements:
- conda-build {{ conda_build_version }}
- conda-verify {{ conda_verify_version }}
- cuda-python {{ cuda_python_version }}
- cudatoolkit ={{ cuda_version }}.*
- cudatoolkit ={{ cuda_major }}.*
- cupy {{ cupy_version }}
- cython {{ cython_version }}
- dask {{ dask_version }}
Expand Down
5 changes: 3 additions & 2 deletions conda/recipes/rapids-notebook-env/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
{% set minor_version = rapids_version.split('.')[0] + '.' + rapids_version.split('.')[1] %}
{% set cuda_version = '.'.join(environ.get('CUDA_VER', '10.0').split('.')[:2]) %}
{% set py_version = environ.get('CONDA_PY', 36) %}
{% set cuda_major=cuda_version.split('.')[0] %}

###
# Versions referenced below are set in `conda/recipe/*versions.yaml` except for
Expand All @@ -25,7 +26,7 @@ source:

build:
number: {{ GIT_DESCRIBE_NUMBER }}
string: cuda{{ cuda_version }}_py{{ py_version }}_{{ GIT_DESCRIBE_HASH }}_{{ GIT_DESCRIBE_NUMBER }}
string: cuda{{ cuda_major }}_py{{ py_version }}_{{ GIT_DESCRIBE_HASH }}_{{ GIT_DESCRIBE_NUMBER }}
script_env:
- CUDA_VERSION
- RAPIDS_VER
Expand All @@ -38,7 +39,7 @@ requirements:
- bokeh {{ bokeh_version }}
- colorcet
- conda-forge::blas
- cudatoolkit ={{ cuda_version }}.*
- cudatoolkit ={{ cuda_major }}.*
- cupy {{ cupy_version }}
- cython {{ cython_version }}
- dask-labextension
Expand Down
5 changes: 3 additions & 2 deletions conda/recipes/rapids-xgboost/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
{% set minor_version = rapids_version.split('.')[0] + '.' + rapids_version.split('.')[1] %}
{% set cuda_version = '.'.join(environ.get('CUDA_VER', '10.0').split('.')[:2]) %}
{% set py_version = environ.get('CONDA_PY', 36) %}
{% set cuda_major=cuda_version.split('.')[0] %}

###
# Versions referenced below are set in `conda/recipe/*versions.yaml` except for
Expand All @@ -25,7 +26,7 @@ source:

build:
number: {{ GIT_DESCRIBE_NUMBER }}
string: cuda{{ cuda_version }}_py{{ py_version }}_{{ GIT_DESCRIBE_HASH }}_{{ GIT_DESCRIBE_NUMBER }}
string: cuda{{ cuda_major }}_py{{ py_version }}_{{ GIT_DESCRIBE_HASH }}_{{ GIT_DESCRIBE_NUMBER }}
script_env:
- CUDA_VERSION
- RAPIDS_VER
Expand All @@ -35,7 +36,7 @@ requirements:
host:
- python
run:
- cudatoolkit ={{ cuda_version }}.*
- cudatoolkit ={{ cuda_major }}.*
- nccl {{ nccl_version }}
- python
- xgboost {{ xgboost_version }}{{ minor_version }}
Expand Down
5 changes: 3 additions & 2 deletions conda/recipes/rapids/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
{% set minor_version = rapids_version.split('.')[0] + '.' + rapids_version.split('.')[1] %}
{% set cuda_version = '.'.join(environ.get('CUDA_VER', '10.0').split('.')[:2]) %}
{% set py_version = environ.get('CONDA_PY', 36) %}
{% set cuda_major=cuda_version.split('.')[0] %}

###
# Versions referenced below are set in `conda/recipe/*versions.yaml` except for
Expand All @@ -25,7 +26,7 @@ source:

build:
number: {{ GIT_DESCRIBE_NUMBER }}
string: cuda{{ cuda_version }}_py{{ py_version }}_{{ GIT_DESCRIBE_HASH }}_{{ GIT_DESCRIBE_NUMBER }}
string: cuda{{ cuda_major }}_py{{ py_version }}_{{ GIT_DESCRIBE_HASH }}_{{ GIT_DESCRIBE_NUMBER }}
script_env:
- CUDA_VERSION
- RAPIDS_VER
Expand All @@ -36,7 +37,7 @@ requirements:
- python
run:
- cuda-python {{ cuda_python_version }}
- cudatoolkit ={{ cuda_version }}.*
- cudatoolkit ={{ cuda_major }}.*
- cupy {{ cupy_version }}
- nccl {{ nccl_version }}
- networkx {{ networkx_version }}
Expand Down

0 comments on commit cd6e167

Please sign in to comment.