[PATCH] D136945: [AMDGPU] Enable `permlanex16` selection with `+16-bit-insts,+gfx10-insts`
Jay Foad via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Oct 28 05:57:18 PDT 2022
foad added inline comments.
================
Comment at: llvm/lib/Target/AMDGPU/AMDGPUSubtarget.cpp:185
unsigned GCNSubtarget::getConstantBusLimit(unsigned Opcode) const {
+ if (hasGFX10Insts() && (Opcode == AMDGPU::V_PERMLANE16_B32_e64 ||
+ Opcode == AMDGPU::V_PERMLANEX16_B32_e64)) {
----------------
Yuck. Why is this required?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D136945/new/
https://reviews.llvm.org/D136945
More information about the llvm-commits
mailing list