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
Hi, I'm helping to write a compiler that takes in SPIR-V and produces something consumable by DirectX drivers, according to your diagram in docs/DXIL.rst a possible target is DXIR.
Is there any documentation of DXIR and the process that takes it to DXIL? I was unable to find any in this repo.
The text was updated successfully, but these errors were encountered:
Unfortunately, documentation on the lowering process is mostly non-existent. I would recommend using the dndxc tool to see the initial IR from CodeGen, and the steps applied afterwards for some representative examples. Try to determine where in that process the SPIR-V might most closely map (perhaps close to CodeGen?). Then try to get the IR into that form so you can utilize the remaining passes for lowering to DXIL.
Hi, I'm helping to write a compiler that takes in SPIR-V and produces something consumable by DirectX drivers, according to your diagram in docs/DXIL.rst a possible target is DXIR.
Is there any documentation of DXIR and the process that takes it to DXIL? I was unable to find any in this repo.
The text was updated successfully, but these errors were encountered: