Skip to content

Commit

Permalink
Init 22.10.0-SNAPSHOT (NVIDIA#416)
Browse files Browse the repository at this point in the history
* Init 22.10.0-SNAPSHOT

Signed-off-by: Peixin Li <pxli@nyu.edu>

* fix spark-rapids build url
  • Loading branch information
pxLi authored Jul 28, 2022
1 parent f33ff29 commit 830ddb6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[submodule "thirdparty/cudf"]
path = thirdparty/cudf
url = https://github.com/rapidsai/cudf.git
branch = branch-22.08
branch = branch-22.10
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ $ ./build/build-in-docker install ...
```

Now cd to ~/repos/NVIDIA/spark-rapids and build with one of the options from
[spark-rapids instructions](https://github.com/NVIDIA/spark-rapids/blob/branch-22.08/CONTRIBUTING.md#building-from-source).
[spark-rapids instructions](https://github.com/NVIDIA/spark-rapids/blob/branch-22.10/CONTRIBUTING.md#building-from-source).

```bash
$ ./build/buildall
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

<groupId>com.nvidia</groupId>
<artifactId>spark-rapids-jni</artifactId>
<version>22.08.0-SNAPSHOT</version>
<version>22.10.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>RAPIDS Accelerator JNI for Apache Spark</name>
<description>
Expand Down
2 changes: 1 addition & 1 deletion src/main/cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ rapids_cuda_init_architectures(SPARK_RAPIDS_JNI)

project(
SPARK_RAPIDS_JNI
VERSION 22.08.00
VERSION 22.10.00
LANGUAGES C CXX CUDA
)

Expand Down
2 changes: 1 addition & 1 deletion thirdparty/cudf
Submodule cudf updated 57 files
+4 −0 CHANGELOG.md
+1 −1 ci/checks/style.sh
+1 −1 ci/gpu/build.sh
+1 −1 ci/gpu/java.sh
+2 −2 conda/environments/cudf_dev_cuda11.5.yml
+2 −0 conda/recipes/libcudf/meta.yaml
+2 −1 cpp/CMakeLists.txt
+1 −0 cpp/benchmarks/CMakeLists.txt
+235 −0 cpp/benchmarks/io/fst.cu
+2 −2 cpp/doxygen/Doxyfile
+1 −1 cpp/examples/basic/CMakeLists.txt
+1 −0 cpp/include/cudf/io/types.hpp
+81 −0 cpp/include/cudf/lists/detail/set_operations.hpp
+171 −0 cpp/include/cudf/lists/set_operations.hpp
+8 −0 cpp/include/cudf/lists/stream_compaction.hpp
+2 −1 cpp/include/doxygen_groups.h
+1 −1 cpp/libcudf_kafka/CMakeLists.txt
+5 −3 cpp/src/binaryop/compiled/operation.cuh
+14 −0 cpp/src/io/parquet/page_data.cu
+246 −30 cpp/src/io/parquet/page_enc.cu
+6 −0 cpp/src/io/parquet/parquet.hpp
+15 −2 cpp/src/io/parquet/parquet_gpu.hpp
+19 −14 cpp/src/io/parquet/reader_impl.cu
+143 −8 cpp/src/io/parquet/writer_impl.cu
+3 −1 cpp/src/io/parquet/writer_impl.hpp
+9 −6 cpp/src/io/text/multibyte_split.cu
+303 −0 cpp/src/lists/set_operations.cu
+3 −2 cpp/src/lists/utilities.cu
+6 −3 cpp/src/lists/utilities.hpp
+4 −0 cpp/tests/CMakeLists.txt
+74 −0 cpp/tests/io/fst/common.hpp
+2 −50 cpp/tests/io/fst/fst_test.cu
+782 −36 cpp/tests/io/parquet_test.cpp
+666 −0 cpp/tests/lists/set_operations/difference_distinct_tests.cpp
+553 −0 cpp/tests/lists/set_operations/have_overlap_tests.cpp
+631 −0 cpp/tests/lists/set_operations/intersect_distinct_tests.cpp
+624 −0 cpp/tests/lists/set_operations/union_distinct_tests.cpp
+4 −0 docs/cudf/source/api_docs/dataframe.rst
+4 −2 docs/cudf/source/api_docs/series.rst
+2 −2 docs/cudf/source/conf.py
+1 −1 fetch_rapids.cmake
+2 −2 java/ci/README.md
+1 −1 java/pom.xml
+1 −1 java/src/main/native/CMakeLists.txt
+1 −1 python/cudf/CMakeLists.txt
+3 −3 python/cudf/cudf/core/column/lists.py
+49 −63 python/cudf/cudf/core/dataframe.py
+107 −143 python/cudf/cudf/core/groupby/groupby.py
+16 −16 python/cudf/cudf/core/index.py
+53 −0 python/cudf/cudf/core/indexed_frame.py
+129 −161 python/cudf/cudf/core/series.py
+36 −0 python/cudf/cudf/tests/test_dataframe.py
+28 −0 python/cudf/cudf/tests/test_datetime.py
+7 −0 python/cudf/cudf/tests/test_list.py
+14 −0 python/cudf/cudf/tests/test_timedelta.py
+8 −1 python/dask_cudf/dask_cudf/groupby.py
+33 −5 python/dask_cudf/dask_cudf/tests/test_groupby.py

0 comments on commit 830ddb6

Please sign in to comment.