Skip to content

Commit

Permalink
Merge pull request rapidsai#249 from dillon-cullinan/gpuci-cudf
Browse files Browse the repository at this point in the history
[REVIEW] Update cuDF version in build script and add rmm install
  • Loading branch information
afender authored Apr 26, 2019
2 parents 2896bd7 + 7145ab1 commit 7bb2baa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
- PR #236 Fixed issue with v0.7 nightly yml environment file. Also updated the README to remove pip
- PR #239 Added a check to prevent a cugraph object to store two different graphs.
- PR #244 Fixed issue with nvgraph's subgraph extraction if the first vertex in the vertex list is not incident on an edge in the extracted graph
- PR #249 Fix oudated cuDF version in gpu/build.sh


# cuGraph 0.6.0 (22 Mar 2019)
Expand Down
8 changes: 5 additions & 3 deletions ci/gpu/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ function logger() {
# Set path, build parallel level, and CUDA version
export PATH=/conda/bin:/usr/local/cuda/bin:$PATH
export PARALLEL_LEVEL=4
export CUDA_VERSION_SHORT=${CUDA_VERSION%.*}
export CUDF_VERSION=0.6
export CUDA_REL=${CUDA_VERSION%.*}
export CUDF_VERSION=0.7.*
export RMM_VERSION=0.7.*

# Set home to the job's workspace
export HOME=$WORKSPACE
Expand All @@ -31,7 +32,8 @@ nvidia-smi

logger "Activate conda env..."
source activate gdf
conda install -c nvidia/label/cuda$CUDA_VERSION_SHORT -c rapidsai/label/cuda$CUDA_VERSION_SHORT -c rapidsai-nightly/label/cuda$CUDA_VERSION_SHORT -c numba -c conda-forge -c defaults cudf=$CUDF_VERSION nvgraph networkx python-louvain
conda install -c nvidia/label/cuda$CUDA_REL -c rapidsai/label/cuda$CUDA_REL -c rapidsai-nightly/label/cuda$CUDA_REL -c numba -c conda-forge \
cudf=$CUDF_VERSION rmm=$RMM_VERSION nvgraph networkx python-louvain

logger "Check versions..."
python --version
Expand Down

0 comments on commit 7bb2baa

Please sign in to comment.