[PATCH] D81172: [AMDGPU] Implement hardware bug workaround for image instructions
Matt Arsenault via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Jul 13 10:56:14 PDT 2020
arsenm added inline comments.
================
Comment at: llvm/lib/Target/AMDGPU/AMDGPULegalizerInfo.cpp:3226-3228
+ // TODO Handle v3f16
+ if (StoreVT.getNumElements() == 3)
+ return Reg;
----------------
rdomingu wrote:
> arsenm wrote:
> > There's no obstacle to handling v3 here, it should work in the other cases
> Note that v3f16 is not handled in SIISelLowering.cpp either (line 7255). Are you suggesting we implement v3f16 there too?
There is a v3f16 definition now, so you could. I think it's more important for globalisel to be more complete
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D81172/new/
https://reviews.llvm.org/D81172
More information about the llvm-commits
mailing list