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
To enable the error report for the SPIR-V backend, we need a SPIR-V analysis to check if the code conducts OpStore to a resource because it is not trivial to check the assignment by checking only a0 = r0. We have no idea a0 is a reference to a global resource or not.
Unfortunately, the spirv-opt legalization handles the code and somehow generates the legal code: x.legal.txt from the initial code generated by DXC: x.txt
To fix this issue, I guess we need a sophisticated handling in spirv-val ...
The text was updated successfully, but these errors were encountered:
DXIL backend reports error if the code has assignments to resources e.g.,
To enable the error report for the SPIR-V backend, we need a SPIR-V analysis to check if the code conducts
OpStore
to a resource because it is not trivial to check the assignment by checking onlya0 = r0
. We have no ideaa0
is a reference to a global resource or not.Unfortunately, the spirv-opt legalization handles the code and somehow generates the legal code: x.legal.txt from the initial code generated by DXC: x.txt
To fix this issue, I guess we need a sophisticated handling in spirv-val ...
The text was updated successfully, but these errors were encountered: