[llvm] 563d545 - [NFC][LLVM][LangRef] Fix typos within partial.reduce.add documentation.
Paul Walker via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 12 03:51:45 PST 2025
Author: Paul Walker
Date: 2025-02-12T11:51:26Z
New Revision: 563d54569e416228d0229a20a48b50d434f5bf70
URL: https://github.com/llvm/llvm-project/commit/563d54569e416228d0229a20a48b50d434f5bf70
DIFF: https://github.com/llvm/llvm-project/commit/563d54569e416228d0229a20a48b50d434f5bf70.diff
LOG: [NFC][LLVM][LangRef] Fix typos within partial.reduce.add documentation.
Added:
Modified:
llvm/docs/LangRef.rst
Removed:
################################################################################
diff --git a/llvm/docs/LangRef.rst b/llvm/docs/LangRef.rst
index add9ac68de25d..ab79f5a18aa10 100644
--- a/llvm/docs/LangRef.rst
+++ b/llvm/docs/LangRef.rst
@@ -20252,7 +20252,7 @@ of the result's type, while maintaining the same element type.
Semantics:
""""""""""
-Other than the reduction operator (e.g. add) the way in which the concatinated
+Other than the reduction operator (e.g. add) the way in which the concatenated
arguments is reduced is entirely unspecified. By their nature these intrinsics
are not expected to be useful in isolation but instead implement the first phase
of an overall reduction operation.
@@ -20261,8 +20261,8 @@ The typical use case is loop vectorization where reductions are split into an
in-loop phase, where maintaining an unordered vector result is important for
performance, and an out-of-loop phase to calculate the final scalar result.
-By not introducing any new ordering constraints these intrinsics maximize the
-abilitity to utilise a target's accumulation instructions.
+By avoiding the introduction of new ordering constraints, these intrinsics
+enhance the ability to leverage a target's accumulation instructions.
'``llvm.experimental.vector.histogram.*``' Intrinsic
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
More information about the llvm-commits
mailing list