From 0c02d35ae54a28619e0c99ab86c1eace607d555a Mon Sep 17 00:00:00 2001 From: Nara Prasetya Date: Wed, 20 Nov 2024 15:08:29 +0000 Subject: [PATCH] chore: bump version and fix changelog --- CHANGELOG.md | 6 +++--- CMakeLists.txt | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6517aca3..94ead236 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,10 +3,10 @@ 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 3.2.0 for ROCm 6.4 +## (Unreleased) rocRAND 3.3.0 for ROCm 6.4 ### Added + * Added extended tests to `rtest.py`. These tests are extra tests that did not fit the criteria of smoke and regression tests. These tests will take much longer to run relative to smoke and regression tests. Use `python rtest.py [--emulation|-e|--test|-t]=extended` to run these tests. * Added regression tests to `rtest.py`. These tests recreate scenarios that have caused hardware problems in past emulation environments. Use `python rtest.py [--emulation|-e|--test|-t]=regression` to run these tests. * Added smoke test options, which runs a subset of the unit tests and ensures that less than 2gb of VRAM will be used. Use `python rtest.py [--emulation|-e|--test|-t]=smoke` to run these tests. @@ -15,6 +15,7 @@ Documentation for rocRAND is available at ### Changed * `--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. +* Removed TBB dependency for multi-core processing of host-side generation. ## rocRAND 3.2.0 for ROCm 6.3.0 @@ -29,7 +30,6 @@ Documentation for rocRAND is available at ### Changed * `rocrand_discrete` for MTGP32, LFSR113 and ThreeFry generators now uses the alias method, which is faster than binary search in CDF. -* Removed TBB dependency for multi-core processing of host-side generation. ## rocRAND 3.1.1 for ROCm 6.2.4 diff --git a/CMakeLists.txt b/CMakeLists.txt index 7f7344f9..b667a43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -156,7 +156,7 @@ if(BUILD_FILE_REORG_BACKWARD_COMPATIBILITY AND NOT WIN32) endif() # Set version variables -rocm_setup_version( VERSION "3.2.0" ) +rocm_setup_version( VERSION "3.3.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}")