-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Develop Stream 2024-03-21 general fixes (part I) (#97)
* bump the required cmake version to 3.21.3 * Fix device_globals example name * Fix hip_streams timeout on AMD windows debug build type * Update templates * Update cuda container to ROCm 5.4 * Change std::bind into lambda * HIP 5.5 fixes * fix tests not being executed * Make the reference to the identity and transpose op uniform * Fix NVCC CI * Resolve "Increase timeout for CI" * Update fixed size arrays to C++ standards * Add missing include in hip_texture_management * Remove void** cast from hipMalloc * Fix hip-libraries-cuda-ubuntu Dockerfile * Make the windows builds less verbose * Rework Windows CI * Skip failing rocsparse tests * Fix cooperative groups example * ci: Make skipped examples more prominent in windows VS test runner * Enable rocsparse examples in CI * Update .gitlab/issue_templates/example.md Fix small typo --------- Co-authored-by: Balint Soproni <[email protected]> Co-authored-by: Robin Voetter <[email protected]> Co-authored-by: Nara Prasetya <[email protected]> Co-authored-by: Nol Moonen <[email protected]> Co-authored-by: Mátyás Aradi <[email protected]> Co-authored-by: Gergely Mészáros <[email protected]> Co-authored-by: Sam Wu <[email protected]>
- Loading branch information
1 parent
259508d
commit 95687ef
Showing
30 changed files
with
463 additions
and
325 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,12 @@ | ||
# Example checklist | ||
|
||
- Elaboration | ||
- [ ] Example concept is described and agreed on | ||
- [ ] Example concept is described and agreed upon | ||
- Implementation | ||
- [ ] Example is implemented | ||
- CMake support is added | ||
- [ ] Linux | ||
- [ ] Windows | ||
- [ ] GNU Make support is added (Linux) | ||
- [ ] Visual Studio project is added (Windows) | ||
- [ ] Project is added to the root solution | ||
- [ ] Inline code documentation is added | ||
- [ ] README is added according to template | ||
- [ ] Related READMEs, ToC are updated | ||
- [ ] Internal CI passes | ||
- [ ] Example is implemented | ||
- Internal review | ||
- [ ] Internal code review is done | ||
- [ ] Internal code review is done | ||
- External review | ||
- [ ] Upstreaming PR is opened, external code review is done | ||
- [ ] Upstreaming PR is opened, external review is done | ||
- Done | ||
- [ ] Example merged to upstream | ||
- [ ] Example merged to upstream |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
## Notes for the reviewer | ||
_The reviewer should acknowledge all these topics._ | ||
<insert notes> | ||
|
||
## Checklist before merge | ||
- [ ] CMake support is added | ||
- [ ] Dependencies are copied via `IMPORTED_RUNTIME_ARTIFACTS` if applicable | ||
- [ ] GNU Make support is added (Linux) | ||
- [ ] Visual Studio project is added for VS2017, 2019, 2022 (Windows) (use [the script](https://projects.streamhpc.com/departments/knowledge/employee-handbook/-/wikis/Projects/AMD/Libraries/examples/Adding-Visual-Studio-Projects-to-new-examples#scripts)) | ||
- [ ] DLL dependencies are copied via `<Content Include` | ||
- [ ] Visual Studio project is added to `ROCm-Examples-vs*.sln` (ROCm) | ||
- [ ] Visual Studio project is added to `ROCm-Examples-Portable-vs*.sln` (ROCm/CUDA) if applicable | ||
- [ ] Inline code documentation is added | ||
- [ ] README is added according to template | ||
- [ ] Related READMEs, ToC are updated | ||
- [ ] The CI passes for Linux/ROCm, Linux/CUDA, Windows/ROCm, Windows/CUDA. |
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.