From 20014ff26762beae9b6598cb16567c80efdd4945 Mon Sep 17 00:00:00 2001 From: Wayne Date: Thu, 8 May 2025 10:27:26 -0400 Subject: [PATCH] Update google benchmark version We are now using some newer google benchmark features that are not present in 1.8.0. Update the cmake dependencies file to pull version 1.9.0. --- CHANGELOG.md | 6 ++++++ cmake/Dependencies.cmake | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 12045c71b..07408b526 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ Documentation for rocThrust available at [https://rocm.docs.amd.com/projects/rocThrust/en/latest/](https://rocm.docs.amd.com/projects/rocThrust/en/latest/). +## rocThrust 3.5.0 for ROCm 7.0 + +### Changed + +* Updated the required version of Google Benchmark from 1.8.0 to 1.9.0. + ## rocThrust 3.4.0 for ROCm 6.5 ### Added diff --git a/cmake/Dependencies.cmake b/cmake/Dependencies.cmake index afad93485..9b5ec406b 100644 --- a/cmake/Dependencies.cmake +++ b/cmake/Dependencies.cmake @@ -135,7 +135,7 @@ endif() # Benchmark dependencies if(BUILD_BENCHMARKS) - set(BENCHMARK_VERSION 1.8.0) + set(BENCHMARK_VERSION 1.9.0) if(NOT DEPENDENCIES_FORCE_DOWNLOAD) # Google Benchmark (https://github.com/google/benchmark.git) find_package(benchmark ${BENCHMARK_VERSION} QUIET)