From 91e87ca2e8dee1cc87db8f574d8caea1a4a0149d Mon Sep 17 00:00:00 2001 From: Allen Xu Date: Fri, 24 Jun 2022 11:18:57 +0800 Subject: [PATCH] Fall back to use cudf 22.04 (#74) * fall back cudf version to 22.04 due to issue: https://github.com/NVIDIA/spark-rapids-ml/issues/73 Signed-off-by: Allen Xu * refine Signed-off-by: Allen Xu --- README.md | 4 ++-- native/src/CMakeLists.txt | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8c84b313..9f7705be 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ and cmake dependecies 4. [cuDF](https://github.com/rapidsai/cudf): - install cuDF shared library via conda: ```bash - conda install -c rapidsai-nightly -c nvidia -c conda-forge cudf=22.06 python=3.8 -y + conda install -c rapidsai -c nvidia -c conda-forge cudf=22.04 python=3.8 -y ``` 5. [RAFT(22.06)](https://github.com/rapidsai/raft): - raft provides only header files, so no build instructions for it. @@ -101,4 +101,4 @@ more details about example code. We provide both [Notebook](https://github.com/NVIDIA/spark-rapids-examples/blob/branch-22.06/examples/Spark-cuML/pca/PCA-example-notebook.ipynb) and [jar](https://github.com/NVIDIA/spark-rapids-examples/blob/branch-22.06/examples/Spark-cuML/pca/scala/src/com/nvidia/spark/examples/pca/Main.scala) versions there. Instructions to run these examples are described in the - [README](https://github.com/NVIDIA/spark-rapids-examples/blob/branch-22.06/examples/Spark-cuML/pca/README.md). \ No newline at end of file + [README](https://github.com/NVIDIA/spark-rapids-examples/blob/branch-22.06/examples/Spark-cuML/pca/README.md). diff --git a/native/src/CMakeLists.txt b/native/src/CMakeLists.txt index ad1a85a9..09c952ed 100644 --- a/native/src/CMakeLists.txt +++ b/native/src/CMakeLists.txt @@ -59,9 +59,9 @@ include(${CPM_DOWNLOAD_LOCATION}) # pull cuDF sources, to use jni_utils.hpp # cmake options should be added here for CI build. CPMAddPackage(NAME cudf - VERSION "22.06.00" + VERSION "22.04.00" GIT_REPOSITORY https://github.com/rapidsai/cudf.git - GIT_TAG branch-22.06 + GIT_TAG branch-22.04 ) add_library(rapidsml_jni SHARED rapidsml_jni.cpp