From 8d070e3bdab14f0f110d7d06cc3bba6234f96b8f Mon Sep 17 00:00:00 2001 From: Jim Brennan Date: Tue, 24 May 2022 09:17:33 -0500 Subject: [PATCH] Address review comments from Robert Maynard --- cpp/CMakeLists.txt | 3 ++- java/src/main/native/CMakeLists.txt | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index 2ed3708ac0c..e2fd8ce56ee 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -53,7 +53,8 @@ option( stream to external libraries." OFF ) -option(PER_THREAD_DEFAULT_STREAM "Build with per-thread default stream" OFF) +option(PER_THREAD_DEFAULT_STREAM "[DEPRECATED] Build with per-thread default stream" OFF) +mark_as_advanced(FORCE, PER_THREAD_DEFAULT_STREAM) option(DISABLE_DEPRECATION_WARNING "Disable warnings generated from deprecated declarations." OFF) # Option to enable line info in CUDA device compilation to allow introspection when profiling / # memchecking diff --git a/java/src/main/native/CMakeLists.txt b/java/src/main/native/CMakeLists.txt index 939732b87ca..5d349b0c383 100755 --- a/java/src/main/native/CMakeLists.txt +++ b/java/src/main/native/CMakeLists.txt @@ -38,7 +38,8 @@ project( option(USE_NVTX "Build with NVTX support" ON) option(BUILD_SHARED_LIBS "Build cuDF JNI shared libraries" ON) option(BUILD_TESTS "Configure CMake to build tests" ON) -option(PER_THREAD_DEFAULT_STREAM "Build with per-thread default stream" OFF) +option(PER_THREAD_DEFAULT_STREAM "[DEPRECATED] Build with per-thread default stream" OFF) +mark_as_advanced(FORCE, PER_THREAD_DEFAULT_STREAM) option(CUDF_USE_PER_THREAD_DEFAULT_STREAM "Build with per-thread default stream" OFF) option(CUDA_STATIC_RUNTIME "Statically link the CUDA runtime" OFF) option(USE_GDS "Build with GPUDirect Storage (GDS)/cuFile support" OFF)