Re: [PATCH] gdb.rocm/watchpoint-basic: add gfx1103 to XFAILs
Simon Marchi <[email protected]>
| Newsgroups | gmane.comp.gdb.patches |
|---|---|
| Message-ID | <[email protected]> |
On 8/7/26 12:28 PM, Shahab Vahedi wrote:
> Again, a confirmed KFD issue. By confirmed, I mean that if a dummy
> dispatch is done first, then everything goes OK.
>
> __global__ void dummy () {}
>
> int main (...)
> {
> ...
> dummy<<<1, 1>>> ();
> /* Break after malloc. */
> kernel<<<1, 1>>> (global_ptr1, global_ptr2);
> ...
> }
If it's really the case that this arch exhibits the same problem, then
it's fine to continue with the existing pattern.
Approved-By: Simon Marchi <[email protected]>
As a subsequent comment, I wonder if, for these arches, instead of
xfail-ing, it would be more useful to dispatch that dummy commit and
then expect the watchpoint to work.
Simon