Open
Description
Our previous shader compiler came from 0392e60 which worked fine. We now downloaded new blobs from ea3623f / https://ci.appveyor.com/project/dnovillo/directxshadercompiler/builds/47177077 and observe a deadlock with the following pattern:
repro.hlsl
:
[numthreads(32, 8, 1)] void main(uint2 threadId
: SV_DispatchThreadID) {
ByteAddressBuffer buffer = ResourceDescriptorHeap[NonUniformResourceIndex(10)];
RayDesc result = buffer.Load<RayDesc>(sizeof(RayDesc) * 1);
}
Run dxc
from the above (Windows or Linux) download, and observe that the command runs indefinitely:
./dxc-artifacts/bin/dxc -E main -T cs_6_6 repro.hlsl -Fo test
I understand RayDesc
to be a simple POD, and copying that into a local RayDesc2
struct and loading that doesn't deadlock.
Metadata
Metadata
Assignees
Type
Projects
Status
Triaged