Tony Tye

Results 18 comments of Tony Tye

[AMD Official Use Only] Under share we need something like: Share -->doc -->-->*.[pdf,md,txt] -->html-->-->*.html -->info-->-->*.info -->man -->man1-->*.1 -->man5-->*.5 -->-->* Thanks, -Tony From: Jeremy Newton ***@***.***> Sent: Thursday, December 16, 2021...

I suggest marking the SGPRs as to which are User SGPRS and which as System SGPRs. The next in the paragraph defines these terms. So the ones marked as No...

See https://llvm.org/docs/AMDGPUUsage.html#code-object-v3-kernel-descriptor for a definition of the kernel descriptor for the current code object version. The definition has changed across code object versions. I believe that the code object V4...

This seems like a bug. The symbol to use to denote a kernel in a AQL dispatch packet can be obtained from the V3 metadata, and that symbol should be...

In the HSA HSAIL spec there was the addition of indirect functions. These were never implemented so this support was never used. One of the things likely needed for this...

Currently symbols are put into the dynsym table for kernel descriptors and the entry point of the kernel. The latter is not required in the symbol table as the language...

By default, the HIP runtime does not load the code objects for device code until a kernel is actually launched. This means you either need to set pending breakpoints, or...

The current ROCm 5.4 release does support function local variable printing if compiled with -O0 -g. Support for local/shared address space variables should be added in an upcoming release. You...

Printing variables allocated in private memory has been supported for some time now if compiled with -g -O0. If you have a case where it is not it would be...

ROCgdb supports the standard gdb MI interface so should function with existing GUI tools. Have you tried it? I believe someone working on Theia which is using the same debugger...