Skip to content

Commit 186d401

Browse files
authored
Update google benchmark version (#545) (#562)
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.
1 parent 6bf2777 commit 186d401

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ Documentation for rocThrust available at
2626
* `--test|-t` is no longer a required flag for `rtest.py`. Instead, the user can use either `--emulation|-e` or `--test|-t`, but not both.
2727
* Split the contents of HIPSTDPAR's forwarding header into several implementation headers.
2828
* Fixed `copy_if` to work with large data types (512 bytes)
29+
* Updated the required version of Google Benchmark from 1.8.0 to 1.9.0.
2930

3031
### Known Issues
3132
* `thrust::inclusive_scan_by_key` might produce incorrect results when it's used with -O2 or -O3 optimization.

cmake/Dependencies.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ endif()
134134

135135
# Benchmark dependencies
136136
if(BUILD_BENCHMARKS)
137-
set(BENCHMARK_VERSION 1.8.0)
137+
set(BENCHMARK_VERSION 1.9.0)
138138
if(NOT DEPENDENCIES_FORCE_DOWNLOAD)
139139
# Google Benchmark (https://github.com/google/benchmark.git)
140140
find_package(benchmark ${BENCHMARK_VERSION} QUIET)

0 commit comments

Comments
 (0)