From e93cc89ba824f304efcbeb9544dca0714c319fed Mon Sep 17 00:00:00 2001 From: Vyas Ramasubramani Date: Thu, 3 Nov 2022 13:08:37 -0700 Subject: [PATCH] Force using old fmt in nvbench. --- cpp/CMakeLists.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index c84589af345..fc848ac2f1e 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -750,7 +750,10 @@ if(CUDF_BUILD_BENCHMARKS) OPTIONS "BENCHMARK_ENABLE_TESTING OFF" "BENCHMARK_ENABLE_INSTALL OFF" ) - # Find or install NVBench + # Find or install NVBench Temporarily force downloading of fmt because current versions of nvbench + # do not support the latest version of fmt, which is automatically pulled into our conda + # environments by mamba. + set(CPM_DOWNLOAD_fmt TRUE) include(${rapids-cmake-dir}/cpm/nvbench.cmake) rapids_cpm_nvbench() add_subdirectory(benchmarks)