From c02cf6c0786ffb2139754ab3ac1936cc96662c59 Mon Sep 17 00:00:00 2001 From: BradReesWork Date: Wed, 12 Feb 2020 20:09:14 -0500 Subject: [PATCH 1/3] New conda environment for 10.2 --- conda/environments/cugraph_dev_cuda102.yml | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 conda/environments/cugraph_dev_cuda102.yml diff --git a/conda/environments/cugraph_dev_cuda102.yml b/conda/environments/cugraph_dev_cuda102.yml new file mode 100644 index 00000000000..03650e2f78f --- /dev/null +++ b/conda/environments/cugraph_dev_cuda102.yml @@ -0,0 +1,36 @@ +name: cugraph_dev +channels: +- rapidsai +- nvidia +- rapidsai-nightly +- conda-forge +dependencies: +- cudf=0.13.* +- nvstrings=0.13.* +- rmm=0.13.* +- dask>=2.1.0 +- distributed>=2.1.0 +- dask-cuda=0.13* +- dask-cudf=0.13* +- scipy +- networkx +- python-louvain +- nccl +- cudatoolkit=10.2 +- cmake>=3.12 +- python>=3.6,<3.8 +- notebook>=0.5.0 +- boost +- cython>=0.29,<0.30 +- pytest +- sphinx +- sphinx_rtd_theme +- sphinxcontrib-websupport +- nbsphinx +- numpydoc +- ipython +- recommonmark +- pip +- libcypher-parser +- pip: + - sphinx-markdown-tables From e0a36b7f920519ad94d0361c4776f5ec14f214a8 Mon Sep 17 00:00:00 2001 From: BradReesWork Date: Wed, 12 Feb 2020 20:13:47 -0500 Subject: [PATCH 2/3] New conda environment for CUDA 10.2 --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ade69fd89a6..b3524aed7a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ - PR #688 Cleanup datasets after testing on gpuCI - PR #694 Replace the expensive cudaGetDeviceProperties call in triangle counting with cheaper cudaDeviceGetAttribute calls - PR #701 Add option to filter datasets and tests when run from CI +- PR #715 Added new YML file for CUDA 10.2 ## Bug Fixes - PR #697 Updated versions in conda environments. From 58459459a7485413877e98cd432eb99e50a209bf Mon Sep 17 00:00:00 2001 From: BradReesWork Date: Thu, 13 Feb 2020 12:06:33 -0500 Subject: [PATCH 3/3] Updated environment files - dropped 9.2 and renamed files --- ...ev_cuda10.yml => cugraph_dev_cuda10.0.yml} | 0 ...v_cuda101.yml => cugraph_dev_cuda10.1.yml} | 0 ...v_cuda102.yml => cugraph_dev_cuda10.2.yml} | 0 conda/environments/cugraph_dev_cuda92.yml | 36 ------------------- 4 files changed, 36 deletions(-) rename conda/environments/{cugraph_dev_cuda10.yml => cugraph_dev_cuda10.0.yml} (100%) rename conda/environments/{cugraph_dev_cuda101.yml => cugraph_dev_cuda10.1.yml} (100%) rename conda/environments/{cugraph_dev_cuda102.yml => cugraph_dev_cuda10.2.yml} (100%) delete mode 100644 conda/environments/cugraph_dev_cuda92.yml diff --git a/conda/environments/cugraph_dev_cuda10.yml b/conda/environments/cugraph_dev_cuda10.0.yml similarity index 100% rename from conda/environments/cugraph_dev_cuda10.yml rename to conda/environments/cugraph_dev_cuda10.0.yml diff --git a/conda/environments/cugraph_dev_cuda101.yml b/conda/environments/cugraph_dev_cuda10.1.yml similarity index 100% rename from conda/environments/cugraph_dev_cuda101.yml rename to conda/environments/cugraph_dev_cuda10.1.yml diff --git a/conda/environments/cugraph_dev_cuda102.yml b/conda/environments/cugraph_dev_cuda10.2.yml similarity index 100% rename from conda/environments/cugraph_dev_cuda102.yml rename to conda/environments/cugraph_dev_cuda10.2.yml diff --git a/conda/environments/cugraph_dev_cuda92.yml b/conda/environments/cugraph_dev_cuda92.yml deleted file mode 100644 index cdd5e7328a4..00000000000 --- a/conda/environments/cugraph_dev_cuda92.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: cugraph_dev -channels: -- rapidsai -- nvidia -- rapidsai-nightly -- conda-forge -dependencies: -- libcypher-parser -- cudf=0.13.* -- nvstrings=0.13.* -- rmm=0.13.* -- dask>=2.1.0 -- distributed>=2.1.0 -- dask-cuda=0.13* -- dask-cudf=0.13* -- scipy -- networkx -- python-louvain -- nccl -- cudatoolkit=9.2 -- cmake>=3.12 -- python>=3.6,<3.8 -- notebook>=0.5.0 -- boost -- cython>=0.29,<0.30 -- pytest -- sphinx -- sphinx_rtd_theme -- sphinxcontrib-websupport -- nbsphinx -- numpydoc -- ipython -- recommonmark -- pip -- pip: - - sphinx-markdown-tables