Skip to content

Commit 0c02d35

Browse files
committed
chore: bump version and fix changelog
1 parent 08e4372 commit 0c02d35

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

CHANGELOG.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
Documentation for rocRAND is available at
44
[https://rocm.docs.amd.com/projects/rocRAND/en/latest/](https://rocm.docs.amd.com/projects/rocRAND/en/latest/)
55

6-
7-
## (Unreleased) rocRAND 3.2.0 for ROCm 6.4
6+
## (Unreleased) rocRAND 3.3.0 for ROCm 6.4
87

98
### Added
9+
1010
* 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.
1111
* 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.
1212
* 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
1515
### Changed
1616

1717
* `--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.
18+
* Removed TBB dependency for multi-core processing of host-side generation.
1819

1920
## rocRAND 3.2.0 for ROCm 6.3.0
2021

@@ -29,7 +30,6 @@ Documentation for rocRAND is available at
2930
### Changed
3031

3132
* `rocrand_discrete` for MTGP32, LFSR113 and ThreeFry generators now uses the alias method, which is faster than binary search in CDF.
32-
* Removed TBB dependency for multi-core processing of host-side generation.
3333

3434
## rocRAND 3.1.1 for ROCm 6.2.4
3535

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ if(BUILD_FILE_REORG_BACKWARD_COMPATIBILITY AND NOT WIN32)
156156
endif()
157157

158158
# Set version variables
159-
rocm_setup_version( VERSION "3.2.0" )
159+
rocm_setup_version( VERSION "3.3.0" )
160160
set ( rocrand_VERSION ${rocRAND_VERSION} )
161161
# Old-style version number used within the library's API. rocrand_get_version should be modified.
162162
math(EXPR rocrand_VERSION_NUMBER "${rocRAND_VERSION_MAJOR} * 100000 + ${rocRAND_VERSION_MINOR} * 100 + ${rocRAND_VERSION_PATCH}")

0 commit comments

Comments
 (0)