forked from ROCm/rocRAND
-
Notifications
You must be signed in to change notification settings - Fork 0
Update and complete HIP language support #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
lawruble13
wants to merge
111
commits into
cgmb:cmake-hip-lang-support
Choose a base branch
from
lawruble13:cmake-hip-lang-support
base: cmake-hip-lang-support
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Update and complete HIP language support #1
lawruble13
wants to merge
111
commits into
cgmb:cmake-hip-lang-support
from
lawruble13:cmake-hip-lang-support
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* Hotfix: C * Setup the license file * fix hipRAND commit * Remove license file from dev package (ROCm#259) * Updating changelog * Revert update to hipRAND reference (ROCm#263) Co-authored-by: Liam Wrubleski <[email protected]> Co-authored-by: Stanley Tsang <[email protected]>
Removing old references to hcc (which was deprecated/removed for hipcc)
Co-authored-by: Stanley Tsang <[email protected]>
* Increasing warmup iterations to 10 * Increase warmup iterations to 15 * Adding changelog entry
Co-authored-by: Saad Rahim <[email protected]>
* implement mrg31k3p * small performance optimization in mrg31k3p * improve formatting of generated constants * semantic improvements and missing Python test * formatting fixes * remove unnecessarily large constants * fix error in mrg31k3p calculation * consistent integer types * fix documentation and naming of subsequence length * fix changelog entry for mrg31k3p * Adding current implementation of LFSR113 (not working) * Fix init_kernel for LFSR113 * Add LFSR113 benchmark * Add kernel benchmark for LFSR113 * FIX typo and interface of LFSR113 * Fix a subsequence problem * Update LFSR113 random number generator * Extend and rename test and add seed option to LFSR113 * Add lfsr113 kernel tests * Add generate tests of lfsr113 * Fix C api of lfsr113 * Fix lfsr113 tests * Add different seed test to lfsr113 * Fixup benchmark code * Remove current stream * Update set seed functions documentation * Update Changelog extend fortran and benchmark api * Update comments * Add some extra comment to the random number generator * Remove offset from interface * Fix the defualt value * Update set seed function * Add LFSR113 to python interface * Add scrambled sobol32/64 implementation, tests and benchmarks * enable scrambled sobol benchmarks in benchmark_curand_generate.cpp * Add initial 64 bit API * Enable sobol64 python bindings and tests * Deduplicate code for scrambled sobol variants * Fix log_normal distribution for sobol64 * Default poisson-functions to unsigned int Make Result_Type of the templated poisson_distribution functions default to unsigned int, to make the interface backwards compatible. * Update Changelog, Readme and python-inline documentation for scrambled sobol * Add generators for precomputed scrambled sobol32/64 direction vectors and constants * Deduplicate code for sobol benchmarks in benchmark_curand_kernel.cpp * Update code documentation for rocrand_uniform_double The documentation of some generators wrongly stated, that the distribution is generated from only 32 bits, despite using 64 bits * Deduplicate sobol benchmark code * Fix fortran wrapper enum for generator types * Refactor sobol tests * Update README * Add missing comma in engine-list of benchmark_rocrand_generate.cpp * Remove device-generation option from scrambled sobol tools * Fix wrong type in scrambled sobol64 implementation * minor consistency changes * Fix `uint` to `unsigned int` A typo that was made possible by the HIP device library headers, it prevented using rocRAND from normal C++ code on Windows. (Both the hip device library headers and linux system headers define this alias) * Merge branch 'fix_uint' into 'develop_stream' Fix `uint` to `unsigned int` See merge request amd/libraries/rocRAND!199 * Update changelog to 5.4 Co-authored-by: Théo Battrel <[email protected]> Co-authored-by: Gergely Mészáros <[email protected]> Co-authored-by: Istvan Kiss <[email protected]> Co-authored-by: Matthias Knorr <[email protected]> Co-authored-by: Stanley Tsang <[email protected]>
* restore old sobol64 uniform distribution, minor fixes * update changelog, disable python test
* Fix CI * add clang format file and ci lint stage * Use googlebenchmark for the generate benchmark Instead of an ad-hoc reporting format, use the googlebenchmark library to define, filter and execute benchmarks. Custom context information is also added to the benchmark for archival reasons similar to rocPRIM. Googlebenchmark is automatically downloaded if not found when benchmarks are enabled. * Workaround broken hip headers included from host compiler in package test The hip headers have device only code visible to the host compiler on the nvcc path. Package test is compiled with just the host compiler because its only using the host api of rocrand. This workaround sets it to CUDA mode in the nvcc path until the fix for hip headers is released. Modernize to CUDA language instead of FindCuda.cmake. * Revert workaround for `ROCM_SYMLINK_LIBS` The underlying issue has been fixed in latest rocm-cmake. * Fix shebang of check-format.sh using env On some distributions (notable ones include alpine and nixos) `bash` is not part of the base installation, therefore its not installed in `/bin`. Use `env` to find bash in the `PATH` which is portable on most *nix systems. * Separate new and legacy benchmarks with a cmake option Restore the old `bencmark_rocrand_generate` for backwards compatibility. Add the googlebenchmark based version as `benchmark_rocrand_host_api`. Building the old benchmark can be enabled by setting `BUILD_LEGACY_BENCHMARK` to `ON` (on by default). A later change can change the default and then finally remove the old benchmarks giving users time to adjust to the changes. * Use the new benchmark name for the host api benchmark * Add deprecation for BUILD_LEGACY_BENCHMARK * Drop googlebenchmark compiler override The underlying issue has been fixed in v1.5.5 with google/benchmark#1174. The workaround is no longer needed. * Fixes to enable benchmark build on Windows (ROCm#282) * add new generators to changed benchmarks * Windows googlebench ci fix (ROCm#294) * Update windows compiler for googlebenchmark * Fix line indentations Co-authored-by: Lőrinc Serfőző <[email protected]> Co-authored-by: Nol Moonen <[email protected]> Co-authored-by: Bibrak Qamar <[email protected]> Co-authored-by: Máté Ferenc Nagy-Egri <[email protected]> Co-authored-by: Stanley Tsang <[email protected]>
…es (ROCm#296) * Fix for old version rocm folder not removed on upgrade of meta packages * Fix for old version rocm folder not removed on upgrade of meta packages
* Updating benchmarks to output in csv format * Adding benchmark executable names to output * Updating new benchmarks
* Enabling gfx1100 and gfx1101 support * Enabling gfx11x support for windows
* Update bin,cmake path to latest folder structure * review comments update - added semicolon separator for module path, prefix path
* Enabling gfx1100 and gfx1101 support * Enabling gfx11x support for windows * Adding gfx1102 support
* First attempt to port. Committing to switch remote machine * Unnecessary includes removed, now using CUDA events for time measurement and Readme.md and CMakeLists.txt updated. Benchmark output compared with legacy output and no significant differences were found. * Engine CURAND_RNG_PSEUDO_MT19937 removed (it was not in legacy benchmark) * Fix format * gitlab-ci fix * Small fixes. Changed benchmark_curand_generate back to legacy and created benchmark_curand_host_api with new implementation * Format fix * Bracket fix * Line fix * Order parameter added. rocrand_set_ordering added for mrg32k3a engine * Fixed some comments, removed OrderingType and modified rocrand.hpp * add nvcc-specific hiprand cmake variable * Line break * Fixed ordering options documentation and added support for the generators left * Copyright year updated * Added delegating constructor for rocrand_generator_type, added incorrect order value check in rocrand_set_ordering and fixed some copydoc * Minor fixes * Parameters order fix * Reordering members of rocrand_generator_type * implement mt19937 * Changed arguments order in generators constructors * fix incorrect free call * small fix in head and tail processing * fix freeing wrong pointer in test * restore merge error * remove unused variable * minor performance improvement * formatting, workaround for warp size on nvidia * review comments round 1 * review comments round 2 * review comments round 3 * skipping test now checks for subsequence size that is not multiple of state size * review comments round 4 * review comments round 5 * add mt19937 to benchmark_curand_host_api * small readability improvement * add mt19937 to readme * review comments round 6 * Workaround stream hang * remove workaround stream hang * add rocrand kernel benchmark using google benchmark * review comments round 1 * fix incorrect name for 64-bits generators * replace deprecated built-in hip variables * hip-cpu compatibility * fix kernel benchmark for scrambled sobol * fix sobol64 test type * add curand kernel benchmark using google benchmark * review comments round 1 * Remove the Python2 test case from CI * Port rocRAND to HIP-CPU * surpress warning on integer conversion * Add draft of rocrand_threefry.h * Update draft of ThreeFry * Finish implementing ThreeFry * Add kernel benchmark for ThreeFry * Add a test for ThreeFry * Add uint2_64 * Threefry bug fixes * Add a test to generate raw binary data of PRNG engine to use with Dieharder * Fix engine and some improvements * Update threefry2x64 and add threefry2x32, threefry4x32 and threefry4x64 * Extend benchmarks * Add test kernel threefry * Enable normal tests * Enable generate threefry tests * Bugfix for lognormal and normal * Add to benchmark_rocrand_host_api.cpp and rocrand_kernel.h * Deal with more than 2^32 numbers at discard state * Disable trivially copyable test * Updated Changelog and Readme * Rename threefry and add caching * Rename state and macro * Implement 4 different threefry * Clang-format * Update python tests * Update the threefry prngs and tests * 64 bit partial support * 2 state generare kernel incorrect * Fix unit tests * clang-format * resolve -Wimplicit-const-int-float-conversion * fix overflow in mean calculation * fix bug in discard and discard subsequence, update tests accordingly, clarify documentation * fix another occurrence of overflow in mean calculation, improve first instance * use proper divistor in continuity test for 64-bits threefry generator * add ordering to threeyfry * unify generate_64 and generate_long_long * enable threefry host tests, remove unnecessary compile option that gave problems * small fix in comments, use expf instead of exp where possible * fix 64-bits poisson distribution interface, benchmarks, and tests * run clang-format * minor improvements * disable python test for 32-bits poisson from 64-bits generator * fix merge problems * add to device api benchmark * remove 64-bits poisson * hip-cpu compatibility * fix wrong type in test * review comments round 1 * undo loop unroll * disable 4x64 test for hip-cpu * simplify core for loop * add missing default dimension definition * fix poisson benchmark name * apply benchmark format changes to threefry * parity test infrastructure * parity test generation/running * report results in csv * rocrand_set_ordering for mt19937 * make parity test standalone * formatting * parity test ci * remove todo comment * fix typo * improve rocrand docs * fix versions * move source to source directory, split up c/c++ api reference into separate sections * python docs: fix crossreferencing, constructor docs * put generator types docs in programmer's guide * review fixes * improve incremental compilation time Instead of putting the large sobol constant arrays in the header, they are now put in a separate compilation unit. This prevents recompilation of those files when something is altered in the main library, and so should reduce the time it takes to incrementally compile rocrand after a modification to the core library. * ordering documentation * add curand compatibility table * use clang-15 to compile hip-cpu * fix linking errors on windows Co-authored-by: Beatriz Navidad Vilches <[email protected]> Co-authored-by: Mátyás Aradi <[email protected]> Co-authored-by: Théo Battrel <[email protected]> Co-authored-by: Istvan Kiss <[email protected]> Co-authored-by: Robin Voetter <[email protected]>
Bumps [urllib3](https://github.com/urllib3/urllib3) from 1.26.15 to 1.26.18. - [Release notes](https://github.com/urllib3/urllib3/releases) - [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst) - [Commits](urllib3/urllib3@1.26.15...1.26.18) --- updated-dependencies: - dependency-name: urllib3 dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [cryptography](https://github.com/pyca/cryptography) from 41.0.3 to 41.0.4. - [Changelog](https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst) - [Commits](pyca/cryptography@41.0.3...41.0.4) --- updated-dependencies: - dependency-name: cryptography dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [gitpython](https://github.com/gitpython-developers/GitPython) from 3.1.32 to 3.1.37. - [Release notes](https://github.com/gitpython-developers/GitPython/releases) - [Changelog](https://github.com/gitpython-developers/GitPython/blob/main/CHANGES) - [Commits](gitpython-developers/GitPython@3.1.32...3.1.37) --- updated-dependencies: - dependency-name: gitpython dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* Add const to benchmark rocrand_device_api functions * Add static to benchmark_rocrand_device_api function * Address cppcheck warnings to benchmark_rocrand_generate * Address cppcheck warnings to benchmark_rocrand_kernel * Address cppcheck warnings to cmdparser * Address cppcheck warnings to rocrand.hpp * Address cppcheck warnings to rocrand_mrg31k3p * Address cppcheck warnings to rocrand_mrg32k3a * Address cppcheck warnings to rocrand_mtgp32 * Address cppcheck warnings to rocrand_philox4x32_10 * Address cppcheck warnings to rocrand_sobol32 * Address cppcheck warnings to rocrand_sobol64 * Address cppcheck warnings to rocrand_threefry2_impl * Address cppcheck warnings to rocrand_threefry4_impl * Address cppcheck warnings to rocrand_xorwow * Address cppcheck warnings to discrete * Address cppcheck warnings to poisson * Fix cpp-check warnings * Merge back hotfixes from 5.7 (ROCm#385) (ROCm#391) * Enable gfx94x build targets (ROCm#353) --------- * 5.7 cherry pick - Benchmark perf. improvements for discrete distributions (ROCm#379) * Remove workaround with hipGridDim_x * hipBlockDim_x It makes no difference anymore on ROCm >= 5.5, probably after switching to code object v5. * Use restrict with tables of discrete distributions This change improves performance in device API benchamrks for most engines. --------- --------- Co-authored-by: Stanley Tsang <[email protected]> Co-authored-by: Lauren Wrubleski <[email protected]> Co-authored-by: Eiden Yoshida <[email protected]> Co-authored-by: Anton Gorenko <[email protected]> * Updating changelog with correct categorizations (ROCm#393) * Remove deprecated references to amdgpu-target (ROCm#397) --------- Co-authored-by: RobsonRLemos <[email protected]> Co-authored-by: Robson Lemos <[email protected]> Co-authored-by: Lauren Wrubleski <[email protected]> Co-authored-by: Eiden Yoshida <[email protected]> Co-authored-by: Anton Gorenko <[email protected]>
* readme and changelog updates * Update README.md Co-authored-by: Saad Rahim (AMD) <[email protected]> --------- Co-authored-by: Saad Rahim (AMD) <[email protected]>
Bumps [rocm-docs-core](https://github.com/RadeonOpenCompute/rocm-docs-core) from 0.26.0 to 0.30.1. - [Release notes](https://github.com/RadeonOpenCompute/rocm-docs-core/releases) - [Changelog](https://github.com/RadeonOpenCompute/rocm-docs-core/blob/develop/CHANGELOG.md) - [Commits](ROCm/rocm-docs-core@v0.26.0...v0.30.1) --- updated-dependencies: - dependency-name: rocm-docs-core dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [rocm-docs-core](https://github.com/RadeonOpenCompute/rocm-docs-core) from 0.30.1 to 0.30.3. - [Release notes](https://github.com/RadeonOpenCompute/rocm-docs-core/releases) - [Changelog](https://github.com/RadeonOpenCompute/rocm-docs-core/blob/develop/CHANGELOG.md) - [Commits](ROCm/rocm-docs-core@v0.30.1...v0.30.3) --- updated-dependencies: - dependency-name: rocm-docs-core dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* minor language updates * added ROCm v6, MI300, default component. Fixed errors in template --------- Co-authored-by: Lisa <[email protected]>
Bumps [cryptography](https://github.com/pyca/cryptography) from 41.0.4 to 41.0.6. - [Changelog](https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst) - [Commits](pyca/cryptography@41.0.4...41.0.6) --- updated-dependencies: - dependency-name: cryptography dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [numpy](https://github.com/numpy/numpy) from 1.24.3 to 1.24.4. - [Release notes](https://github.com/numpy/numpy/releases) - [Changelog](https://github.com/numpy/numpy/blob/main/doc/RELEASE_WALKTHROUGH.rst) - [Commits](numpy/numpy@v1.24.3...v1.24.4) --- updated-dependencies: - dependency-name: numpy dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [gitpython](https://github.com/gitpython-developers/GitPython) from 3.1.37 to 3.1.41. - [Release notes](https://github.com/gitpython-developers/GitPython/releases) - [Changelog](https://github.com/gitpython-developers/GitPython/blob/main/CHANGES) - [Commits](gitpython-developers/GitPython@3.1.37...3.1.41) --- updated-dependencies: - dependency-name: gitpython dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [jinja2](https://github.com/pallets/jinja) from 3.1.2 to 3.1.3. - [Release notes](https://github.com/pallets/jinja/releases) - [Changelog](https://github.com/pallets/jinja/blob/main/CHANGES.rst) - [Commits](pallets/jinja@3.1.2...3.1.3) --- updated-dependencies: - dependency-name: jinja2 dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [rocm-docs-core](https://github.com/RadeonOpenCompute/rocm-docs-core) from 0.30.3 to 0.31.0. - [Release notes](https://github.com/RadeonOpenCompute/rocm-docs-core/releases) - [Changelog](https://github.com/RadeonOpenCompute/rocm-docs-core/blob/develop/CHANGELOG.md) - [Commits](ROCm/rocm-docs-core@v0.30.3...v0.31.0) --- updated-dependencies: - dependency-name: rocm-docs-core dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* Add const to benchmark rocrand_device_api functions * Add static to benchmark_rocrand_device_api function * Address cppcheck warnings to benchmark_rocrand_generate * Address cppcheck warnings to benchmark_rocrand_kernel * Address cppcheck warnings to cmdparser * Address cppcheck warnings to rocrand.hpp * Address cppcheck warnings to rocrand_mrg31k3p * Address cppcheck warnings to rocrand_mrg32k3a * Address cppcheck warnings to rocrand_mtgp32 * Address cppcheck warnings to rocrand_philox4x32_10 * Address cppcheck warnings to rocrand_sobol32 * Address cppcheck warnings to rocrand_sobol64 * Address cppcheck warnings to rocrand_threefry2_impl * Address cppcheck warnings to rocrand_threefry4_impl * Address cppcheck warnings to rocrand_xorwow * Address cppcheck warnings to discrete * Address cppcheck warnings to poisson * Fix cpp-check warnings * Merge back hotfixes from 5.7 (ROCm#385) (ROCm#391) * Enable gfx94x build targets (ROCm#353) --------- * 5.7 cherry pick - Benchmark perf. improvements for discrete distributions (ROCm#379) * Remove workaround with hipGridDim_x * hipBlockDim_x It makes no difference anymore on ROCm >= 5.5, probably after switching to code object v5. * Use restrict with tables of discrete distributions This change improves performance in device API benchamrks for most engines. --------- --------- Co-authored-by: Stanley Tsang <[email protected]> Co-authored-by: Lauren Wrubleski <[email protected]> Co-authored-by: Eiden Yoshida <[email protected]> Co-authored-by: Anton Gorenko <[email protected]> * Updating changelog with correct categorizations (ROCm#393) * Remove deprecated references to amdgpu-target (ROCm#397) * Update version for ROCm 6.0 (ROCm#425) --------- Co-authored-by: RobsonRLemos <[email protected]> Co-authored-by: Robson Lemos <[email protected]> Co-authored-by: Lauren Wrubleski <[email protected]> Co-authored-by: Eiden Yoshida <[email protected]> Co-authored-by: Anton Gorenko <[email protected]>
- Update repository links to reflect new organization. - Updated link to ROCm install instructions. The github.io link is broken, so linking to the main ROCm documentation.
* Add documentation for supported data types * Add to toc.yml * Fix data-type-support documentation --------- Co-authored-by: Matthias Knorr <[email protected]>
Bumps [rocm-docs-core](https://github.com/RadeonOpenCompute/rocm-docs-core) from 0.31.0 to 0.33.0. - [Release notes](https://github.com/RadeonOpenCompute/rocm-docs-core/releases) - [Changelog](https://github.com/ROCm/rocm-docs-core/blob/develop/CHANGELOG.md) - [Commits](ROCm/rocm-docs-core@v0.31.0...v0.33.0) --- updated-dependencies: - dependency-name: rocm-docs-core dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* Bump rocm-docs-core from 0.33.0 to 0.33.1 in /docs/sphinx Bumps [rocm-docs-core](https://github.com/RadeonOpenCompute/rocm-docs-core) from 0.33.0 to 0.33.1. - [Release notes](https://github.com/RadeonOpenCompute/rocm-docs-core/releases) - [Changelog](https://github.com/ROCm/rocm-docs-core/blob/develop/CHANGELOG.md) - [Commits](ROCm/rocm-docs-core@v0.33.0...v0.33.1) --- updated-dependencies: - dependency-name: rocm-docs-core dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * Add API Ref for doxysphinx --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Sam Wu <[email protected]>
Bumps [cryptography](https://github.com/pyca/cryptography) from 41.0.6 to 42.0.0. - [Changelog](https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst) - [Commits](pyca/cryptography@41.0.6...42.0.0) --- updated-dependencies: - dependency-name: cryptography dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…inx (ROCm#440) Bumps [rocm-docs-core[api_reference]](https://github.com/RadeonOpenCompute/rocm-docs-core) from 0.33.1 to 0.33.2. - [Release notes](https://github.com/RadeonOpenCompute/rocm-docs-core/releases) - [Changelog](https://github.com/ROCm/rocm-docs-core/blob/develop/CHANGELOG.md) - [Commits](ROCm/rocm-docs-core@v0.33.1...v0.33.2) --- updated-dependencies: - dependency-name: rocm-docs-core[api_reference] dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…inx (ROCm#442) Bumps [rocm-docs-core[api_reference]](https://github.com/RadeonOpenCompute/rocm-docs-core) from 0.33.2 to 0.34.0. - [Release notes](https://github.com/RadeonOpenCompute/rocm-docs-core/releases) - [Changelog](https://github.com/ROCm/rocm-docs-core/blob/develop/CHANGELOG.md) - [Commits](ROCm/rocm-docs-core@v0.33.2...v0.34.0) --- updated-dependencies: - dependency-name: rocm-docs-core[api_reference] dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* Add ci job to test with static libraries * Set static libs via DBUILD_SHARED_LIBS flag
…inx (ROCm#445) Bumps [rocm-docs-core[api_reference]](https://github.com/RadeonOpenCompute/rocm-docs-core) from 0.34.0 to 0.34.2. - [Release notes](https://github.com/RadeonOpenCompute/rocm-docs-core/releases) - [Changelog](https://github.com/ROCm/rocm-docs-core/blob/develop/CHANGELOG.md) - [Commits](ROCm/rocm-docs-core@v0.34.0...v0.34.2) --- updated-dependencies: - dependency-name: rocm-docs-core[api_reference] dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.