[Mlir-commits] [clang] [llvm] [mlir] [clang][NVPTX][MLIR][NVVM] Add overloaded fadd intrinsics (PR #217336)
Srinivasa Ravi
llvmlistbot at llvm.org
Tue Aug 25 07:28:56 PDT 2026
================
@@ -1357,6 +1357,34 @@ static Intrinsic::ID shouldUpgradeNVPTXTcgen05MMAIntrinsic(Function *F,
return F->getIntrinsicID();
}
+static std::optional<std::pair<Intrinsic::ID, RoundingMode>>
+getNVVMFAddUpgrade(StringRef Name) {
+ auto [Modifiers, Type] = Name.rsplit('.');
+ if (Type != "f" && Type != "d" && Type != "f16" && Type != "v2f16")
----------------
Wolfram70 wrote:
Done, thanks!
https://github.com/llvm/llvm-project/pull/217336
More information about the Mlir-commits
mailing list