[llvm] Expanding the Histogram Intrinsic (PR #127399)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 18 02:33:35 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.
----------------
RonDahan101 wrote:
Done
https://github.com/llvm/llvm-project/pull/127399
More information about the llvm-commits
mailing list