[llvm] [NVPTX] Add float to tf32 conversion intrinsic (PR #121507)
Alex MacLean via llvm-commits
llvm-commits at lists.llvm.org
Fri Jan 3 13:42:13 PST 2025
================
@@ -1466,6 +1466,15 @@ let TargetPrefix = "nvvm" in {
def int_nvvm_e5m2x2_to_f16x2_rn_relu : ClangBuiltin<"__nvvm_e5m2x2_to_f16x2_rn_relu">,
Intrinsic<[llvm_v2f16_ty], [llvm_i16_ty], [IntrNoMem, IntrNoCallback]>;
+// Convert Float to TF32
+def int_nvvm_cvt_float_to_tf32 : Intrinsic<[llvm_i32_ty],
----------------
AlexMaclean wrote:
Nice, it might be better to suffix it with "f32" instead of "float" so that if we ever support converting from other types we can seamlessly convert to an overloaded intrinsic.
https://github.com/llvm/llvm-project/pull/121507
More information about the llvm-commits
mailing list