From 7f0b6f3260a86d796631a232d83eab1032e0916f Mon Sep 17 00:00:00 2001 From: Stanley Tsang Date: Thu, 7 Mar 2024 00:10:49 +0000 Subject: [PATCH 1/2] Update to correct rocRAND version --- CHANGELOG.md | 2 +- CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f538e7eb8..d380e8880 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ Documentation for rocRAND is available at [https://rocm.docs.amd.com/projects/rocRAND/en/latest/](https://rocm.docs.amd.com/projects/rocRAND/en/latest/) -## (Unreleased) rocRAND-x.x.x for ROCm 6.0.0 +## rocRAND-3.0.0 for ROCm 6.0.0 ### Changes diff --git a/CMakeLists.txt b/CMakeLists.txt index 87944cc9f..5ead08b9a 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 "2.10.17" ) +rocm_setup_version( VERSION "3.0.0" ) 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}") From 7b229f966c581c0149e6b89d7c407898cac2ed36 Mon Sep 17 00:00:00 2001 From: Stanley Tsang Date: Thu, 11 Apr 2024 19:54:38 +0000 Subject: [PATCH 2/2] 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 d380e8880..0568a388c 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 5ead08b9a..80d0ad0d6 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}")