From 77858b5ff1aa209897395caa5a960bc166ef351e Mon Sep 17 00:00:00 2001 From: Stanley Tsang Date: Thu, 11 Apr 2024 16:42:26 -0600 Subject: [PATCH] Final 6.1 version update (#476) * Update to correct rocRAND version * Update version for 6.1 to reflect addition of perf workaround --- CHANGELOG.md | 6 ++++++ CMakeLists.txt | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d380e888..99889b69 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ Documentation for rocRAND is available at [https://rocm.docs.amd.com/projects/rocRAND/en/latest/](https://rocm.docs.amd.com/projects/rocRAND/en/latest/) +## rocRAND-3.0.1 for ROCm 6.1.0 + +### Fixes + +* Implemented workaround for regressions in XORWOW and LFSR on MI200 + ## rocRAND-3.0.0 for ROCm 6.0.0 ### Changes diff --git a/CMakeLists.txt b/CMakeLists.txt index 5ead08b9..80d0ad0d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -160,7 +160,7 @@ if(BUILD_FILE_REORG_BACKWARD_COMPATIBILITY AND NOT WIN32) endif() # Set version variables -rocm_setup_version( VERSION "3.0.0" ) +rocm_setup_version( VERSION "3.0.1" ) set ( rocrand_VERSION ${rocRAND_VERSION} ) # Old-style version number used within the library's API. rocrand_get_version should be modified. math(EXPR rocrand_VERSION_NUMBER "${rocRAND_VERSION_MAJOR} * 100000 + ${rocRAND_VERSION_MINOR} * 100 + ${rocRAND_VERSION_PATCH}")