From da207a05d1d5211237fb4d8a1c2bfdef19c59555 Mon Sep 17 00:00:00 2001 From: Jason Lowe Date: Wed, 24 Jan 2024 15:09:19 -0600 Subject: [PATCH] Revert "Update RAPIDS accelerated native UDFs example to use static CUDA runtime" This reverts commit 35c5fca7795627f2e7a656909445703bde715dbf. Signed-off-by: Jason Lowe --- .../RAPIDS-accelerated-UDFs/src/main/cpp/CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/UDF-Examples/RAPIDS-accelerated-UDFs/src/main/cpp/CMakeLists.txt b/examples/UDF-Examples/RAPIDS-accelerated-UDFs/src/main/cpp/CMakeLists.txt index bf827f490..c5a03390b 100755 --- a/examples/UDF-Examples/RAPIDS-accelerated-UDFs/src/main/cpp/CMakeLists.txt +++ b/examples/UDF-Examples/RAPIDS-accelerated-UDFs/src/main/cpp/CMakeLists.txt @@ -1,5 +1,5 @@ #============================================================================= -# Copyright (c) 2021-2024, NVIDIA CORPORATION. +# Copyright (c) 2021-2022, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -81,7 +81,7 @@ set(CMAKE_CUDA_FLAGS "${CMAKE_CUDA_FLAGS} -w --expt-extended-lambda --expt-relax # - cudf ------------------------------------------------------------------------------------------- # Ensure CUDA runtime is dynamic despite statically linking Arrow in libcudf -set(CUDA_USE_STATIC_CUDA_RUNTIME ON) +set(CUDA_USE_STATIC_CUDA_RUNTIME OFF) rapids_cpm_init() rapids_cpm_find(cudf 23.12.00 @@ -94,7 +94,7 @@ rapids_cpm_find(cudf 23.12.00 "BUILD_BENCHMARKS OFF" "CUDF_USE_ARROW_STATIC ON" "JITIFY_USE_CACHE ON" - "CUDA_STATIC_RUNTIME ${CUDA_USE_STATIC_CUDA_RUNTIME}" + "CUDA_STATIC_RUNTIME OFF" "DISABLE_DEPRECATION_WARNING ON" "AUTO_DETECT_CUDA_ARCHITECTURES OFF" )