-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor(device_scan.hpp): use hipCUB for sum by key instead of explicitly calling rocPRIM * Add const qualifier to operator overloading methods of iterators * fix(device_scan.hpp): derive internal accumulator type from scan operator instead of using the input iterator type * docs(changelog.md): document the change in accumulator type for device scan * style(device_scan.hpp): update copyright date * style(device_scan.hpp): improve styling * fix: use public function 'rocprim::invoke_result' instead of 'rocprim::detail::invoke_result' * build: Update CUB/Thrust/libcu++ to 2.2.0 * build: Respect CMAKE_CUDA_FLAGS on the NVIDIA platform Previously hipCUB would ignore CMAKE_CUDA_FLAGS specified by the user. This was probably a workaround to the broken logic that would repeat these flags multiple times when re-configuring the project. I fixed the same issue in rocRAND by not running this code on subsequent configurations. Use the same solution here too. * build(test): Don't mark cmake generated source files to be cleaned This resulted on them being deleted by `make/ninja clean`, and would not be re-generated until the next configuration of cmake, resulting in compilation errors when trying to build after the clean. When the parallelization is changed this might result in some lose files sticking around, but they should not cause harm. * docs(CHANGELOG.md): Add update to CUB version to the changelog [CI skip] * build: Fix NVCC warnings Fix some NVCC and GCC warnings. Some of these were false positives, but the resulting code is cleaner IMO, so it's not worth fighting against the tools. Some warnings remain in ROCm 6.0 coming from the HIP headers. * fix: update github urls to point to new ROCm organization * docs: fixed changelog style * ci: Specifying SPHINX_DIR * build: Updated version in CMakeLists and Changelog --------- Co-authored-by: Nara Prasetya <[email protected]> Co-authored-by: Jaap <[email protected]> Co-authored-by: Gergely Mészáros <[email protected]>
- Loading branch information
1 parent
5c34150
commit 6cb5938
Showing
23 changed files
with
272 additions
and
215 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.