SWDEV-530921 - Remove the usage of __AMDGCN_WAVEFRONT_SIZE as compile time constant (#82)

This commit is contained in:
Dittakavi, Satyanvesh
2025-05-29 12:53:42 +05:30
committed by GitHub
parent e3cb5399cc
commit b32b642fef
2 changed files with 3 additions and 6 deletions
+2 -1
View File
@@ -467,7 +467,8 @@ compile-time constant on the host. It has to be queried using
``warpSize`` should not be assumed to be a specific value in portable HIP
applications. NVIDIA devices return 32 for this variable; AMD devices return
64 for gfx9 and 32 for gfx10 and above. While code that assumes a ``warpSize``
64 for gfx9 and 32 for gfx10 and above. HIP doesn't support ``warpSize`` of
64 on gfx10 and above. While code that assumes a ``warpSize``
of 32 can run on devices with a ``warpSize`` of 64, it only utilizes half of
the the compute resources.