From 87304fb441c2e2277741bac270414b7afcb111a7 Mon Sep 17 00:00:00 2001 From: Hyunsu Cho Date: Tue, 13 Oct 2020 12:18:47 -0700 Subject: [PATCH 1/2] Upgrade Treelite to 0.93 --- conda/environments/cuml_dev_cuda10.1.yml | 2 +- conda/environments/cuml_dev_cuda10.2.yml | 2 +- conda/environments/cuml_dev_cuda11.0.yml | 2 +- conda/recipes/cuml/meta.yaml | 4 ++-- conda/recipes/libcuml/meta.yaml | 4 ++-- cpp/cmake/Dependencies.cmake | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/conda/environments/cuml_dev_cuda10.1.yml b/conda/environments/cuml_dev_cuda10.1.yml index 7c2ffefade..ae407099d6 100644 --- a/conda/environments/cuml_dev_cuda10.1.yml +++ b/conda/environments/cuml_dev_cuda10.1.yml @@ -21,7 +21,7 @@ dependencies: - faiss-proc=*=cuda - umap-learn - scikit-learn=0.23.1 -- treelite=0.92 +- treelite=0.93 - pip - pip: - sphinx_markdown_tables diff --git a/conda/environments/cuml_dev_cuda10.2.yml b/conda/environments/cuml_dev_cuda10.2.yml index 96d2b9b1a3..5a5ef4092d 100644 --- a/conda/environments/cuml_dev_cuda10.2.yml +++ b/conda/environments/cuml_dev_cuda10.2.yml @@ -21,7 +21,7 @@ dependencies: - faiss-proc=*=cuda - umap-learn - scikit-learn=0.23.1 -- treelite=0.92 +- treelite=0.93 - pip - pip: - sphinx_markdown_tables diff --git a/conda/environments/cuml_dev_cuda11.0.yml b/conda/environments/cuml_dev_cuda11.0.yml index 0be6c50ac8..6dc392e070 100644 --- a/conda/environments/cuml_dev_cuda11.0.yml +++ b/conda/environments/cuml_dev_cuda11.0.yml @@ -21,7 +21,7 @@ dependencies: - faiss-proc=*=cuda - umap-learn - scikit-learn=0.23.1 -- treelite=0.92 +- treelite=0.93 - pip - pip: - sphinx_markdown_tables diff --git a/conda/recipes/cuml/meta.yaml b/conda/recipes/cuml/meta.yaml index 65dddeaffb..740d238d1d 100644 --- a/conda/recipes/cuml/meta.yaml +++ b/conda/recipes/cuml/meta.yaml @@ -28,7 +28,7 @@ requirements: - setuptools - cython>=0.29,<0.30 - cmake>=3.14 - - treelite=0.92 + - treelite=0.93 - cudf {{ minor_version }} - libcuml={{ version }} - libcumlprims {{ minor_version }} @@ -40,7 +40,7 @@ requirements: - dask-cudf {{ minor_version }} - libcuml={{ version }} - libcumlprims {{ minor_version }} - - treelite=0.92 + - treelite=0.93 - cupy>7.1.0,<9.0.0a0 - nccl>=2.5 - ucx-py {{ minor_version }} diff --git a/conda/recipes/libcuml/meta.yaml b/conda/recipes/libcuml/meta.yaml index d2c01d6763..012f911253 100644 --- a/conda/recipes/libcuml/meta.yaml +++ b/conda/recipes/libcuml/meta.yaml @@ -37,7 +37,7 @@ requirements: - ucx-py {{ minor_version }} - libcumlprims {{ minor_version }} - lapack - - treelite=0.92 + - treelite=0.93 - faiss-proc=*=cuda - gtest=1.10.0 - libfaiss=1.6.3 @@ -47,7 +47,7 @@ requirements: - nccl>=2.5 - ucx-py {{ minor_version }} - {{ pin_compatible('cudatoolkit', max_pin='x.x') }} - - treelite=0.92 + - treelite=0.93 - faiss-proc=*=cuda - libfaiss=1.6.3 diff --git a/cpp/cmake/Dependencies.cmake b/cpp/cmake/Dependencies.cmake index d5e470c3e3..804a9de685 100644 --- a/cpp/cmake/Dependencies.cmake +++ b/cpp/cmake/Dependencies.cmake @@ -185,7 +185,7 @@ endif(BUILD_STATIC_FAISS) ############################################################################## # - treelite build ----------------------------------------------------------- -find_package(Treelite 0.92 REQUIRED) +find_package(Treelite 0.93 REQUIRED) ############################################################################## # - googletest build ----------------------------------------------------------- From 94a4ff76a3e2cd885bfe847d92c927d5733f3107 Mon Sep 17 00:00:00 2001 From: Hyunsu Cho Date: Tue, 13 Oct 2020 12:22:22 -0700 Subject: [PATCH 2/2] Update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 61dce150a6..0fbd40fc00 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -86,6 +86,7 @@ - PR #2943: Remove unused shuffle_features parameter - PR #2940: Correcting labels meta dtype for `cuml.dask.make_classification` - PR #2957: Fix ols test size for stability +- PR #2972: Upgrade Treelite to 0.93 # cuML 0.15.0 (Date TBD)