diff --git a/CHANGELOG.md b/CHANGELOG.md index 177ae0d4..d5916f4b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,19 +2,22 @@ See README.md on how to build the hipCUB documentation using Doxygen. -## (Unreleased) hipCUB-2.13.1 for ROCm 5.7.0 +## hipCUB-3.0.0 for ROCm 6.0.0 +### Changed +- Removed `DOWNLOAD_ROCPRIM`, forcing rocPRIM to download can be done with `DEPENDENCIES_FORCE_DOWNLOAD`. + +## hipCUB-2.13.2 for ROCm 5.7.0 ### Changed - CUB backend references CUB and Thrust version 2.0.1. - Fixed `DeviceSegmentedReduce::ArgMin` and `DeviceSegmentedReduce::ArgMax` by returning the segment-relative index instead of the absolute one. - Fixed `DeviceSegmentedReduce::ArgMin` for inputs where the segment minimum is smaller than the value returned for empty segments. An equivalent fix is applied to `DeviceSegmentedReduce::ArgMax`. -- Removed `DOWNLOAD_ROCPRIM`, forcing rocPRIM to download can be done with `DEPENDENCIES_FORCE_DOWNLOAD`. ### Known Issues - `debug_synchronous` no longer works on CUDA platform. `CUB_DEBUG_SYNC` should be used to enable those checks. - `DeviceReduce::Sum` does not compile on CUDA platform for mixed extended-floating-point/floating-point InputT and OutputT types. - `DeviceHistogram::HistogramEven` fails on CUDA platform for `[LevelT, SampleIteratorT] = [int, int]`. - `DeviceHistogram::MultiHistogramEven` fails on CUDA platform for `[LevelT, SampleIteratorT] = [int, int/unsigned short/float/double]` and `[LevelT, SampleIteratorT] = [float, double]`. -## (Unreleased) hipCUB-2.13.1 for ROCm 5.5.0 +## hipCUB-2.13.1 for ROCm 5.5.0 ### Added - Benchmarks for `BlockShuffle`, `BlockLoad`, and `BlockStore`. ### Changed @@ -25,7 +28,7 @@ See README.md on how to build the hipCUB documentation using Doxygen. - `BlockRadixRankMatch` is currently broken under the rocPRIM backend. - `BlockRadixRankMatch` with a warp size that does not exactly divide the block size is broken under the CUB backend. -## (Unreleased) hipCUB-2.13.0 for ROCm 5.4.0 +## hipCUB-2.13.0 for ROCm 5.4.0 ### Added - CMake functionality to improve build parallelism of the test suite that splits compilation units by function or by parameters. diff --git a/CMakeLists.txt b/CMakeLists.txt index 930a4790..3a897165 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -98,7 +98,7 @@ if(BUILD_ADDRESS_SANITIZER) endif() # Setup VERSION -set(VERSION_STRING "2.13.1") +set(VERSION_STRING "3.0.0") rocm_setup_version(VERSION ${VERSION_STRING}) # Print configuration summary