[clang] [llvm] [HLSL] Implement dot2add intrinsic (PR #131237)

Sumit Agarwal via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 21 18:48:10 PDT 2025


================
@@ -4894,7 +4894,7 @@ def HLSLDotProduct : LangBuiltin<"HLSL_LANG"> {
 def HLSLDot2Add : LangBuiltin<"HLSL_LANG"> {
   let Spellings = ["__builtin_hlsl_dot2add"];
   let Attributes = [NoThrow, Const, CustomTypeChecking];
----------------
sumitsays wrote:

Removing this makes Codegen unhappy. It is not able to implicitly convert `half` to `_Float16_t`. I think we need to find a way to use `half` here. 

https://github.com/llvm/llvm-project/pull/131237


More information about the llvm-commits mailing list