Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#
# Environment Variables (optional, will use pom.xml values if not set):
# RAPIDS_JAR_PATH - explicit rapids-4-spark jar path
# RAPIDS4SPARK_VERSION - rapids-4-spark version (e.g., 26.08.0 or 26.08.0-SNAPSHOT)
# RAPIDS4SPARK_VERSION - rapids-4-spark version (e.g., 26.10.0 or 26.10.0-SNAPSHOT)
# SCALA_VERSION - Scala binary version (e.g., 2.12, 2.13)
# CUDA_VERSION - CUDA version (e.g., cuda11, cuda12)
# CUDF_BRANCH - cuDF git branch for headers (e.g., main, branch-26.08)
Expand Down
2 changes: 1 addition & 1 deletion examples/UDF-Examples/RAPIDS-accelerated-UDFs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
user defined functions for use with the RAPIDS Accelerator
for Apache Spark
</description>
<version>26.08.0-SNAPSHOT</version>
<version>26.10.0-SNAPSHOT</version>

<properties>
<maven.compiler.source>1.8</maven.compiler.source>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ if(DEFINED GPU_ARCHS)
endif()
rapids_cuda_init_architectures(UDFEXAMPLESJNI)

project(UDFEXAMPLESJNI VERSION 26.08.0 LANGUAGES C CXX CUDA)
project(UDFEXAMPLESJNI VERSION 26.10.0 LANGUAGES C CXX CUDA)

option(PER_THREAD_DEFAULT_STREAM "Build with per-thread default stream" OFF)
option(BUILD_UDF_BENCHMARKS "Build the benchmarks" OFF)
Expand Down Expand Up @@ -356,7 +356,7 @@ else()
set(CUDA_USE_STATIC_CUDA_RUNTIME ON)

rapids_cpm_init()
rapids_cpm_find(cudf 26.08.00
rapids_cpm_find(cudf 26.10.00
CPM_ARGS
GIT_REPOSITORY https://github.com/rapidsai/cudf.git
GIT_TAG ${RAPIDS_CMAKE_BRANCH}
Expand Down