From d5a35c558aeac77c287f91ecbf334a0f0dc8f208 Mon Sep 17 00:00:00 2001 From: Mike Wendt Date: Thu, 13 Aug 2020 22:44:12 -0400 Subject: [PATCH 1/6] TST Run unit tests with numba 0.51.0 Do a GPU test run to see if the timeout issues seen in a pre-release version of numba 0.51 is still present in the recently released 0.51.0 packages --- ci/gpu/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/gpu/build.sh b/ci/gpu/build.sh index 8f4eaec5ebce..08164bb0553b 100755 --- a/ci/gpu/build.sh +++ b/ci/gpu/build.sh @@ -71,8 +71,8 @@ conda install "rmm=$MINOR_VERSION.*" "cudatoolkit=$CUDA_REL" \ "ucx-py=${MINOR_VERSION}" \ # https://docs.rapids.ai/maintainers/depmgmt/ -# conda remove -f rapids-build-env rapids-notebook-env -# conda install "your-pkg=1.0.0" +conda remove -f rapids-build-env +conda install -y -c numba "numba=0.51.0" # Install the master version of dask, distributed, and streamz logger "pip install git+https://github.com/dask/distributed.git --upgrade --no-deps" From 70e60e3dd2513302043941b883f23df32936a0ca Mon Sep 17 00:00:00 2001 From: Mike Wendt Date: Thu, 13 Aug 2020 23:18:57 -0400 Subject: [PATCH 2/6] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f1338598f4dd..af421a6ff7fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -297,6 +297,7 @@ - PR #5951 Fix mkdir error in benchmark build - PR #5949 Find Arrow include directory for JNI builds - PR #5964 Fix API doc page title tag +- PR #5979 Test numba 0.51.0 # cuDF 0.14.0 (03 Jun 2020) From 52fc41048ec409f8fbca3eaf8ce7e1fed6f7da09 Mon Sep 17 00:00:00 2001 From: Mike Wendt Date: Thu, 13 Aug 2020 23:20:12 -0400 Subject: [PATCH 3/6] FIX Update conda remove command --- ci/gpu/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/gpu/build.sh b/ci/gpu/build.sh index 08164bb0553b..51998f16ffed 100755 --- a/ci/gpu/build.sh +++ b/ci/gpu/build.sh @@ -71,7 +71,7 @@ conda install "rmm=$MINOR_VERSION.*" "cudatoolkit=$CUDA_REL" \ "ucx-py=${MINOR_VERSION}" \ # https://docs.rapids.ai/maintainers/depmgmt/ -conda remove -f rapids-build-env +conda remove --force rapids-build-env conda install -y -c numba "numba=0.51.0" # Install the master version of dask, distributed, and streamz From f7d55ed48e2fe071446100abbdc64b9fe6240de8 Mon Sep 17 00:00:00 2001 From: Mike Wendt Date: Thu, 13 Aug 2020 23:32:03 -0400 Subject: [PATCH 4/6] FIX Update numba channel to use 'dev' label --- ci/gpu/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/gpu/build.sh b/ci/gpu/build.sh index 51998f16ffed..824b9c9ba7ea 100755 --- a/ci/gpu/build.sh +++ b/ci/gpu/build.sh @@ -72,7 +72,7 @@ conda install "rmm=$MINOR_VERSION.*" "cudatoolkit=$CUDA_REL" \ # https://docs.rapids.ai/maintainers/depmgmt/ conda remove --force rapids-build-env -conda install -y -c numba "numba=0.51.0" +conda install -y -c numba/label/dev "numba=0.51.0" # Install the master version of dask, distributed, and streamz logger "pip install git+https://github.com/dask/distributed.git --upgrade --no-deps" From de9f5ee1946763097288a8611e2d32ca695a5e5a Mon Sep 17 00:00:00 2001 From: Mike Wendt Date: Fri, 14 Aug 2020 11:06:22 -0400 Subject: [PATCH 5/6] FIX Update numba version to skip rc1 --- ci/gpu/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/gpu/build.sh b/ci/gpu/build.sh index 824b9c9ba7ea..d7b1a2cd0b94 100755 --- a/ci/gpu/build.sh +++ b/ci/gpu/build.sh @@ -72,7 +72,7 @@ conda install "rmm=$MINOR_VERSION.*" "cudatoolkit=$CUDA_REL" \ # https://docs.rapids.ai/maintainers/depmgmt/ conda remove --force rapids-build-env -conda install -y -c numba/label/dev "numba=0.51.0" +conda install -y -c numba/label/dev "numba==0.51.0" # Install the master version of dask, distributed, and streamz logger "pip install git+https://github.com/dask/distributed.git --upgrade --no-deps" From 1a8dcc5d2cb7088dcea4b017a3fbf15f78021663 Mon Sep 17 00:00:00 2001 From: Mike Wendt Date: Fri, 14 Aug 2020 11:17:44 -0400 Subject: [PATCH 6/6] FIX Update channel list to prevent tbb downgrade tbb conda-forge::tbb-2020.1-hc9558a2_0 --> pkgs/main::tbb-2020.0-hfd86e86_0 --- ci/gpu/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/gpu/build.sh b/ci/gpu/build.sh index d7b1a2cd0b94..9c448aa3378b 100755 --- a/ci/gpu/build.sh +++ b/ci/gpu/build.sh @@ -72,7 +72,7 @@ conda install "rmm=$MINOR_VERSION.*" "cudatoolkit=$CUDA_REL" \ # https://docs.rapids.ai/maintainers/depmgmt/ conda remove --force rapids-build-env -conda install -y -c numba/label/dev "numba==0.51.0" +conda install -y -c numba/label/dev -c conda-forge "numba==0.51.0" # Install the master version of dask, distributed, and streamz logger "pip install git+https://github.com/dask/distributed.git --upgrade --no-deps"