[rocm-libraries] ROCm/rocm-libraries#8595 (commit 7fbebbb)

[CK] Clean up Stream-K remnants in old CK and fix
 static_assert in CK Tile (#8595)

## Motivation

This PR is cleans up some Stream-K documentation (e.g., typos, unneeded
docs) and fixes an error in a Stream-K static assert. This PR adds no
new functionality.

## Technical Details
Exact details about the clean-up changes are as follows:
- Removes Stream-K documentation from old CK that were missed in PR
#8141.
- Fixes `static_assert` syntax in Stream-K kernel by adding `constexpr`
to if-else condition and correcting empty message parameter.
- Cleans up some typos in some Doxygen comments in the CK Tile Stream-K
kernel file.

## Test Plan

Ran existing tests locally; no new functionality was added, so no new
tests were added.

## Test Result

Tests passed.

## Submission Checklist

- [x] Look over the contributing guidelines at
https://github.com/ROCm/ROCm/blob/develop/CONTRIBUTING.md#pull-requests.
This commit is contained in:
Emily Martins
2026-07-14 08:23:43 +00:00
committed by assistant-librarian[bot]
parent 327dd55f46
commit 6667a90217
2 changed files with 8 additions and 9 deletions

View File

@@ -139,8 +139,6 @@ Table of supported cases by instance factory with XDL instruction for Row/Row/Ro
* **DeviceGemmMultipleDLayernorm** - GEMM fused with layernorm.
* **DeviceGemmMultipleDMultipleR** - GEMM fused with reductions and custom global reductions operators.
* **DeviceGemmReduce** - GEMM fused with reduction.
* **DeviceGemm_Streamk_V2** - GEMM stream K implementation. Implementation allows to use reduction instead of AtomicAdd.
* **DeviceGemmStreamK** - GEMM stream K implementation using AtomicAdd.
## How to Run