[rocm-libraries] ROCm/rocm-libraries#7111 (commit 651947f)

[CK] Fix latest batch of staging compiler warnings

## Motivation

Suppress the new batch of clang lifetimebound and invalidation warnings
with the latest staging compiler.

## Technical Details

<!-- Explain the changes along with any relevant GitHub links. -->

## Test Plan

<!-- Explain any relevant testing done to verify this PR. -->

## Test Result

<!-- Briefly summarize test outcomes. -->

## Submission Checklist

- [ ] Look over the contributing guidelines at
https://github.com/ROCm/ROCm/blob/develop/CONTRIBUTING.md#pull-requests.
This commit is contained in:
Illia Silin
2026-05-08 14:15:31 +00:00
committed by assistant-librarian[bot]
parent 41064d8684
commit b05040b919
37 changed files with 117 additions and 11 deletions

View File

@@ -19,6 +19,8 @@
#include "example/ck_tile/17_grouped_gemm/grouped_gemm_multi_d.hpp"
#include "profiler/profile_grouped_gemm_tile_loop_generic_impl.hpp"
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wlifetime-safety-invalidation"
extern ck::index_t param_mask;
extern ck::index_t instance_index;
@@ -171,3 +173,4 @@ class TestGroupedGemmTileLoop : public testing::Test
} // namespace test
} // namespace ck
#pragma clang diagnostic pop