[clang] [llvm] [HLSL] Implement dot2add intrinsic (PR #131237)
Farzon Lotfi via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 2 15:15:01 PDT 2025
================
@@ -45,6 +45,14 @@ distance_vec_impl(vector<T, N> X, vector<T, N> Y) {
return length_vec_impl(X - Y);
}
+constexpr float dot2add_impl(half2 a, half2 b, float c) {
+#if defined(__DIRECTX__)
----------------
farzonl wrote:
there is no lowercase `__directx__`. and the lowercase spirv one was only just added last week so you won't see any code in our headers use lowercase `__spirv__` either.
https://github.com/llvm/llvm-project/pull/131237
More information about the llvm-commits
mailing list