[clang] [llvm] [HLSL][SPIRV][DXIL] Implement `dot4add_i8packed` intrinsic (PR #113623)
Finn Plummer via cfe-commits
cfe-commits at lists.llvm.org
Fri Nov 1 18:39:30 PDT 2024
================
@@ -2527,6 +2640,11 @@ bool SPIRVInstructionSelector::selectIntrinsic(Register ResVReg,
case Intrinsic::spv_udot:
case Intrinsic::spv_sdot:
return selectIntegerDot(ResVReg, ResType, I);
+ case Intrinsic::spv_dot4add_i8packed:
+ if (STI.canUseExtension(SPIRV::Extension::SPV_KHR_integer_dot_product) ||
----------------
inbelic wrote:
Created for tracking here: https://github.com/llvm/llvm-project/issues/114632
https://github.com/llvm/llvm-project/pull/113623
More information about the cfe-commits
mailing list