You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DXC sets the flag m_bRequiresGroup to indicate a function accesses group shared memory. It is set if any of the function instruction's type or operand type being a pointer into thread group shared memory - per this and this.
Need to add SHADER_FEATURE_FLAG(32, 40, RequiresGroup, "Function accesses thread group shared memory") to llvm/include/llvm/BinaryFormat/DXContainerConstants.def.
Set RequiresGroup if any of the function instruction's type or operand type being a pointer into thread group shared memory.
Clarification needed: Does clang use a separate address space or some other mechanism to represent thread group shared memory?
AC:
Add tests to verify correctness of analysis.
The text was updated successfully, but these errors were encountered:
DXC sets the flag
m_bRequiresGroup
to indicate a function accesses group shared memory. It is set if any of the function instruction's type or operand type being a pointer into thread group shared memory - per this and this.SHADER_FEATURE_FLAG(32, 40, RequiresGroup, "Function accesses thread group shared memory")
tollvm/include/llvm/BinaryFormat/DXContainerConstants.def
.RequiresGroup
if any of the function instruction's type or operand type being a pointer into thread group shared memory.Clarification needed: Does clang use a separate address space or some other mechanism to represent thread group shared memory?
AC:
Add tests to verify correctness of analysis.
The text was updated successfully, but these errors were encountered: