[llvm] [CostModel][X86] Add more realistic v8i64/v16i32 + v8f64/v16f32 add reduction costs (PR #206124)

via llvm-commits llvm-commits at lists.llvm.org
Fri Jun 26 09:26:13 PDT 2026


github-actions[bot] wrote:

<!--LLVM CODE FORMAT COMMENT: {clang-format}-->


:warning: C/C++ code formatter, clang-format found issues in your code. :warning:

<details>
<summary>
You can test this locally with the following command:
</summary>

``````````bash
git-clang-format --diff origin/main HEAD --extensions cpp -- llvm/lib/Target/X86/X86TargetTransformInfo.cpp --diff_from_common_commit
``````````

:warning:
The reproduction instructions above might return results for more than one PR
in a stack if you are using a stacked PR workflow. You can limit the results by
changing `origin/main` to the base branch/commit you want to compare against.
:warning:

</details>

<details>
<summary>
View the diff from clang-format here.
</summary>

``````````diff
diff --git a/llvm/lib/Target/X86/X86TargetTransformInfo.cpp b/llvm/lib/Target/X86/X86TargetTransformInfo.cpp
index 8838fd7e7..06508e947 100644
--- a/llvm/lib/Target/X86/X86TargetTransformInfo.cpp
+++ b/llvm/lib/Target/X86/X86TargetTransformInfo.cpp
@@ -5672,15 +5672,15 @@ X86TTIImpl::getArithmeticReductionCost(unsigned Opcode, VectorType *ValTy,
   };
 
   static const CostTblEntry AVX512FCostTbl[] = {
-    { ISD::FADD,  MVT::v8f64,   4 },
-    { ISD::FADD,  MVT::v16f32,  5 },
-    { ISD::ADD,   MVT::v8i64,   4 },
-    { ISD::ADD,   MVT::v16i32,  6 },
+      {ISD::FADD, MVT::v8f64, 4},
+      {ISD::FADD, MVT::v16f32, 5},
+      {ISD::ADD, MVT::v8i64, 4},
+      {ISD::ADD, MVT::v16i32, 6},
   };
 
   static const CostTblEntry AVX512BWCostTbl[] = {
-    { ISD::ADD,   MVT::v32i16,  7 },
-    { ISD::ADD,   MVT::v64i8,   4 },
+      {ISD::ADD, MVT::v32i16, 7},
+      {ISD::ADD, MVT::v64i8, 4},
   };
 
   int ISD = TLI->InstructionOpcodeToISD(Opcode);

``````````

</details>


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


More information about the llvm-commits mailing list