diff --git a/cmake/NVBenchDependencies.cmake b/cmake/NVBenchDependencies.cmake index 5f4aa82..d0daa90 100644 --- a/cmake/NVBenchDependencies.cmake +++ b/cmake/NVBenchDependencies.cmake @@ -1,9 +1,9 @@ ################################################################################ # fmtlib/fmt -rapids_cpm_find(fmt 7.1.3 +rapids_cpm_find(fmt 9.1.0 CPM_ARGS GITHUB_REPOSITORY fmtlib/fmt - GIT_TAG 7.1.3 + GIT_TAG 9.1.0 GIT_SHALLOW TRUE OPTIONS # Force static to keep fmt internal. diff --git a/nvbench/cupti_profiler.cxx b/nvbench/cupti_profiler.cxx index a3c076b..a63bf56 100644 --- a/nvbench/cupti_profiler.cxx +++ b/nvbench/cupti_profiler.cxx @@ -53,7 +53,7 @@ void nvpw_call(const NVPA_Status status) { if (status != NVPA_STATUS_SUCCESS) { - NVBENCH_THROW(std::runtime_error, "NVPW call returned error: {}", status); + NVBENCH_THROW(std::runtime_error, "NVPW call returned error: {}", static_cast(status)); } }