Skip to content

Commit

Permalink
Add build files for gpuCI (#248)
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesbluca committed Dec 16, 2021
1 parent 88530fe commit d0fb6d2
Show file tree
Hide file tree
Showing 2 changed files with 71 additions and 0 deletions.
13 changes: 13 additions & 0 deletions continuous_integration/gpuci/axis.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
PYTHON_VER:
- "3.8"

CUDA_VER:
- "11.2"

LINUX_VER:
- ubuntu18.04

RAPIDS_VER:
- "22.02"

excludes:
58 changes: 58 additions & 0 deletions continuous_integration/gpuci/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
##############################################
# Dask GPU build and test script for CI #
##############################################
set -e
NUMARGS=$#
ARGS=$*

# Arg parsing function
function hasArg {
(( ${NUMARGS} != 0 )) && (echo " ${ARGS} " | grep -q " $1 ")
}

# Set path and build parallel level
export PATH=/opt/conda/bin:/usr/local/cuda/bin:$PATH
export PARALLEL_LEVEL=${PARALLEL_LEVEL:-4}

# Set home to the job's workspace
export HOME="$WORKSPACE"

# Switch to project root; also root of repo checkout
cd "$WORKSPACE"

# Determine CUDA release version
export CUDA_REL=${CUDA_VERSION%.*}

################################################################################
# SETUP - Check environment
################################################################################

gpuci_logger "Check environment variables"
env

gpuci_logger "Check GPU usage"
nvidia-smi

gpuci_logger "Activate conda env"
. /opt/conda/etc/profile.d/conda.sh
conda activate dask_image

gpuci_logger "Install cupy"
python -m pip install cupy-cuda112 -f https://pip.cupy.dev/pre

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

gpuci_logger "Install dask-image"
python setup.py install

gpuci_logger "Check Python versions"
python --version

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

gpuci_logger "Python py.test for distributed"
py.test $WORKSPACE -v -m cupy --junitxml="$WORKSPACE/junit-dask-image.xml"

0 comments on commit d0fb6d2

Please sign in to comment.