about summary refs log tree commit diff
path: root/tests/run-make/amdgpu-kd
AgeCommit message (Collapse)AuthorLines
2025-06-16tests: `{Meta,Pointee}Sized` in non-minicore testsDavid Wood-1/+7
As before, add `MetaSized` and `PointeeSized` traits to all of the non-minicore `no_core` tests so that they don't fail for lack of language items.
2025-04-28Workaround for windows-gnu rust-lld test failureChris Denton-0/+6
The test run-make/amdgpu-kd has an issue where rust-lld will sometimes fail with error 0xc0000374 (STATUS_HEAP_CORRUPTION).
2025-02-12Export kernel descriptor for amdgpu kernelsFlakebi-0/+31
The host runtime (HIP or HSA) expects a kernel descriptor object for each kernel in the ELF file. The amdgpu LLVM backend generates the object. It is created as a symbol with the name of the kernel plus a `.kd` suffix. Add it to the exported symbols in the linker script, so that it can be found.