diff --git a/java/README.md b/java/README.md index 6ca58496605..366d014db95 100644 --- a/java/README.md +++ b/java/README.md @@ -38,12 +38,12 @@ In some cases there may be a classifier to indicate the version of cuda required Build From Source section below for more information about when this can happen. No official release of the jar will have a classifier on it. -CUDA 10.0: +CUDA 11.0: ```xml ai.rapids cudf - cuda10 + cuda11 ${cudf.version} ``` diff --git a/java/ci/README.md b/java/ci/README.md index 3ffed71b27c..8f45c0f89af 100644 --- a/java/ci/README.md +++ b/java/ci/README.md @@ -11,16 +11,14 @@ In the root path of cuDF repo, run below command to build the docker image. ```bash -docker build -f java/ci/Dockerfile.centos7 --build-arg CUDA_VERSION=10.1 -t cudf-build:10.1-devel-centos7 . +docker build -f java/ci/Dockerfile.centos7 --build-arg CUDA_VERSION=11.0 -t cudf-build:11.0-devel-centos7 . ``` -We support different CUDA versions as below: -* CUDA 10.1 -* CUDA 10.2 +The following CUDA versions are supported: * CUDA 11.0 Change the --build-arg CUDA_VERSION to what you need. -You can replace the tag "cudf-build:10.1-devel-centos7" with another name you like. +You can replace the tag "cudf-build:11.0-devel-centos7" with another name you like. ## Start the docker then build @@ -28,7 +26,7 @@ You can replace the tag "cudf-build:10.1-devel-centos7" with another name you li Run below command to start a docker container with GPU. ```bash -nvidia-docker run -it cudf-build:10.1-devel-centos7 bash +nvidia-docker run -it cudf-build:11.0-devel-centos7 bash ``` ### Download the cuDF source code @@ -36,7 +34,7 @@ nvidia-docker run -it cudf-build:10.1-devel-centos7 bash You can download the cuDF repo in the docker container or you can mount it into the container. Here I choose to download again in the container. ```bash -git clone --recursive https://github.com/rapidsai/cudf.git -b branch-0.19 +git clone --recursive https://github.com/rapidsai/cudf.git -b branch-0.20 ``` ### Build cuDF jar with devtoolset @@ -49,5 +47,5 @@ scl enable devtoolset-8 "java/ci/build-in-docker.sh" ### The output -You can find the cuDF jar in java/target/ like cudf-0.19-SNAPSHOT-cuda10-1.jar. +You can find the cuDF jar in java/target/ like cudf-0.20-SNAPSHOT-cuda11.jar. diff --git a/java/pom.xml b/java/pom.xml index a3fd464b320..d94d51944a0 100755 --- a/java/pom.xml +++ b/java/pom.xml @@ -21,7 +21,7 @@ ai.rapids cudf - 0.19-SNAPSHOT + 0.20-SNAPSHOT cudfjni