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}")