[llvm] Expanding the Histogram Intrinsic (PR #127399)

Laine Taffin Altman via llvm-commits llvm-commits at lists.llvm.org
Mon Feb 17 19:16:52 PST 2025


================
@@ -1079,34 +1079,41 @@ bool LoopVectorizationLegality::canVectorizeInstrs() {
 
 /// Find histogram operations that match high-level code in loops:
 /// \code
-/// buckets[indices[i]]+=step;
+/// buckets[indices[i]] = UpdateOpeartor(buckets[indices[i]], Val);
 /// \endcode
+/// When updateOperator can be add, sub, add.sat, umin, umax, sub.
----------------
pthariensflame wrote:

```suggestion
/// When updateOperator can be add, sub, add.sat, umin, umax.
```

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


More information about the llvm-commits mailing list