[llvm] fix v_mul_f16_fake16 pattern (PR #130790)

Brox Chen via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 11 09:14:06 PDT 2025


https://github.com/broxigarchen created https://github.com/llvm/llvm-project/pull/130790

None

>From 6e0da2e867c5607f060a8b49422c0a9fd2fe1b02 Mon Sep 17 00:00:00 2001
From: guochen2 <guochen2 at amd.com>
Date: Tue, 11 Mar 2025 12:13:35 -0400
Subject: [PATCH] fix v_mul_f16_fake16 pattern

---
 llvm/lib/Target/AMDGPU/SIInstructions.td | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/llvm/lib/Target/AMDGPU/SIInstructions.td b/llvm/lib/Target/AMDGPU/SIInstructions.td
index 985337da1909d..0b47abfb7050c 100644
--- a/llvm/lib/Target/AMDGPU/SIInstructions.td
+++ b/llvm/lib/Target/AMDGPU/SIInstructions.td
@@ -3256,24 +3256,24 @@ def : GCNPat<
 let True16Predicate = UseRealTrue16Insts in {
 def : GCNPat<
   (fcanonicalize (f16 (VOP3Mods f16:$src, i32:$src_mods))),
-  (V_MUL_F16_t16_e64 0, (i16 CONST.FP16_ONE), $src_mods, $src, 0/*Clamp*/, /*omod*/0, /*opsel*/0)
+  (V_MUL_F16_t16_e64 0, (i16 CONST.FP16_ONE), $src_mods, $src, /*Clamp*/0, /*omod*/0, /*opsel*/0)
 >;
 
 def : GCNPat<
   (fcanonicalize (f16 (fneg (VOP3Mods f16:$src, i32:$src_mods)))),
-  (V_MUL_F16_t16_e64 0, (i16 CONST.FP16_NEG_ONE), $src_mods, $src, 0/*Clamp*/, /*omod*/0, /*opsel*/0)
+  (V_MUL_F16_t16_e64 0, (i16 CONST.FP16_NEG_ONE), $src_mods, $src, /*Clamp*/0, /*omod*/0, /*opsel*/0)
 >;
 } // End True16Predicate
 
 let True16Predicate = UseFakeTrue16Insts in {
 def : GCNPat<
   (fcanonicalize (f16 (VOP3Mods f16:$src, i32:$src_mods))),
-  (V_MUL_F16_fake16_e64 0, (i32 CONST.FP16_ONE), $src_mods, $src)
+  (V_MUL_F16_fake16_e64 0, (i32 CONST.FP16_ONE), $src_mods, $src, /*clamp*/0, /*omod*/0)
 >;
 
 def : GCNPat<
   (fcanonicalize (f16 (fneg (VOP3Mods f16:$src, i32:$src_mods)))),
-  (V_MUL_F16_fake16_e64 0, (i32 CONST.FP16_NEG_ONE), $src_mods, $src)
+  (V_MUL_F16_fake16_e64 0, (i32 CONST.FP16_NEG_ONE), $src_mods, $src, /*clamp*/0, /*omod*/0)
 >;
 } // End True16Predicate
 



More information about the llvm-commits mailing list