Skip to content

Commit 779b6bb

Browse files
authored
Bump GPU CI to CUDA 11.8 (#1275)
* Bump GPU CI to CUDA 11.8 * Resolve deprecation warnings
1 parent 8269983 commit 779b6bb

2 files changed

Lines changed: 14 additions & 14 deletions

File tree

continuous_integration/gpuci/axis.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ PYTHON_VER:
33
- "3.10"
44

55
CUDA_VER:
6-
- "11.5.2"
6+
- "11.8.0"
77

88
LINUX_VER:
99
- ubuntu20.04

continuous_integration/gpuci/build.sh

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -27,38 +27,38 @@ export CUDA_REL=${CUDA_VERSION%.*}
2727
# SETUP - Check environment
2828
################################################################################
2929

30-
gpuci_logger "Check environment variables"
30+
rapids-logger "Check environment variables"
3131
env
3232

33-
gpuci_logger "Check GPU usage"
33+
rapids-logger "Check GPU usage"
3434
nvidia-smi
3535

36-
gpuci_logger "Activate conda env"
36+
rapids-logger "Activate conda env"
3737
. /opt/conda/etc/profile.d/conda.sh
3838
conda activate dask_sql
3939

40-
gpuci_logger "Update conda env"
40+
rapids-logger "Update conda env"
4141
gpuci_mamba_retry env update -n dask_sql -f continuous_integration/gpuci/environment-${PYTHON_VER}.yaml
4242

43-
gpuci_logger "Install awscli"
43+
rapids-logger "Install awscli"
4444
gpuci_mamba_retry install -y -c conda-forge awscli
4545

46-
gpuci_logger "Download parquet dataset"
47-
gpuci_retry aws s3 cp --only-show-errors "${DASK_SQL_BUCKET_NAME}parquet_2gb_sorted/" tests/unit/data/ --recursive
46+
rapids-logger "Download parquet dataset"
47+
rapids-retry aws s3 cp --only-show-errors "${DASK_SQL_BUCKET_NAME}parquet_2gb_sorted/" tests/unit/data/ --recursive
4848

49-
gpuci_logger "Download query files"
50-
gpuci_retry aws s3 cp --only-show-errors "${DASK_SQL_BUCKET_NAME}queries/" tests/unit/queries/ --recursive
49+
rapids-logger "Download query files"
50+
rapids-retry aws s3 cp --only-show-errors "${DASK_SQL_BUCKET_NAME}queries/" tests/unit/queries/ --recursive
5151

52-
gpuci_logger "Install dask-sql"
52+
rapids-logger "Install dask-sql"
5353
pip install -e . -vv
5454

55-
gpuci_logger "Check Python version"
55+
rapids-logger "Check Python version"
5656
python --version
5757

58-
gpuci_logger "Check conda environment"
58+
rapids-logger "Check conda environment"
5959
conda info
6060
conda config --show-sources
6161
conda list --show-channel-urls
6262

63-
gpuci_logger "Python py.test for dask-sql"
63+
rapids-logger "Python py.test for dask-sql"
6464
py.test $WORKSPACE -n 4 -v -m gpu --runqueries --rungpu --junitxml="$WORKSPACE/junit-dask-sql.xml" --cov-config="$WORKSPACE/.coveragerc" --cov=dask_sql --cov-report=xml:"$WORKSPACE/dask-sql-coverage.xml" --cov-report term

0 commit comments

Comments
 (0)