Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch to newer GPU CI images #10608

Merged
merged 5 commits into from
Oct 31, 2023
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions continuous_integration/gpuci/axis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ PYTHON_VER:
- "3.10"

CUDA_VER:
- "11.5"
- "11.5.2"

LINUX_VER:
- ubuntu18.04
- ubuntu20.04

RAPIDS_VER:
- "23.12"
Expand Down
23 changes: 14 additions & 9 deletions continuous_integration/gpuci/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,32 +27,37 @@ export CUDA_REL=${CUDA_VERSION%.*}
# SETUP - Check environment
################################################################################

gpuci_logger "Check environment variables"
rapids-logger "Check environment variables"
env

gpuci_logger "Check GPU usage"
rapids-logger "Check GPU usage"
nvidia-smi

gpuci_logger "Activate conda env"
rapids-logger "Activate conda env"
# Permission testing
set -x
id
ls -ln /opt/conda/etc/profile.d/conda.sh
#
charlesbluca marked this conversation as resolved.
Show resolved Hide resolved
. /opt/conda/etc/profile.d/conda.sh
conda activate dask

gpuci_logger "Install distributed"
rapids-logger "Install distributed"
python -m pip install git+https://github.com/dask/distributed

gpuci_logger "Install dask"
rapids-logger "Install dask"
python -m pip install --no-deps -e .

gpuci_logger "Install pytest-timeout"
rapids-logger "Install pytest-timeout"
python -m pip install pytest-timeout

gpuci_logger "Check Python version"
rapids-logger "Check Python version"
python --version

gpuci_logger "Check conda environment"
rapids-logger "Check conda environment"
conda info
conda config --show-sources
conda list --show-channel-urls

gpuci_logger "Python py.test for dask"
rapids-logger "Python py.test for dask"
py.test $WORKSPACE -n 3 -v -m gpu --junitxml="$WORKSPACE/junit-dask.xml" --cov-config="$WORKSPACE/pyproject.toml" --cov=dask --cov-report=xml:"$WORKSPACE/dask-coverage.xml" --cov-report term