[llvm] [LoopVectorizer] Add support for partial reductions (PR #92418)
Nicholas Guy via llvm-commits
llvm-commits at lists.llvm.org
Thu Dec 5 05:02:35 PST 2024
================
@@ -22,6 +22,26 @@ class LoopVectorizationLegality;
class LoopVectorizationCostModel;
class TargetLibraryInfo;
struct HistogramInfo;
+class TargetTransformInfo;
----------------
NickGuy-Arm wrote:
Very minor nit: Can we move this up one line, so it's grouped with the other `class` forward-declarations
```suggestion
class TargetLibraryInfo;
class TargetTransformInfo;
struct HistogramInfo;
```
https://github.com/llvm/llvm-project/pull/92418
More information about the llvm-commits
mailing list