[polly] 27f7546 - [polly] Fix typos in documentation

Kazu Hirata via llvm-commits llvm-commits at lists.llvm.org
Sat May 27 10:29:34 PDT 2023


Author: Kazu Hirata
Date: 2023-05-27T10:29:20-07:00
New Revision: 27f7546f336263b0b9b569e0c8ec99a164c89d8f

URL: https://github.com/llvm/llvm-project/commit/27f7546f336263b0b9b569e0c8ec99a164c89d8f
DIFF: https://github.com/llvm/llvm-project/commit/27f7546f336263b0b9b569e0c8ec99a164c89d8f.diff

LOG: [polly] Fix typos in documentation

Added: 
    

Modified: 
    polly/docs/Architecture.rst
    polly/docs/HowToManuallyUseTheIndividualPiecesOfPolly.rst
    polly/docs/TipsAndTricks.rst

Removed: 
    


################################################################################
diff  --git a/polly/docs/Architecture.rst b/polly/docs/Architecture.rst
index 92cb97da73e49..645d6522e8694 100644
--- a/polly/docs/Architecture.rst
+++ b/polly/docs/Architecture.rst
@@ -83,7 +83,7 @@ kernels is generally very fast and the actual optimization and cleanup passes
 are only run on functions which contain loop kernels that are worth optimizing.
 However, due to the many optimizations that LLVM runs before Polly the IR that
 reaches Polly often has additional scalar dependences that make Polly a lot less
-efficient. To force Polly to run before the vectorizer in the pass pipleline use
+efficient. To force Polly to run before the vectorizer in the pass pipeline use
 the option *-polly-position=before-vectorizer*. This position is not yet the
 default for Polly, but work is on its way to be effective even in presence of
 scalar dependences. After this work has been completed, Polly will likely use

diff  --git a/polly/docs/HowToManuallyUseTheIndividualPiecesOfPolly.rst b/polly/docs/HowToManuallyUseTheIndividualPiecesOfPolly.rst
index d8f80b833df02..e97ea8ac24d47 100644
--- a/polly/docs/HowToManuallyUseTheIndividualPiecesOfPolly.rst
+++ b/polly/docs/HowToManuallyUseTheIndividualPiecesOfPolly.rst
@@ -240,7 +240,7 @@ performance improvement can be expected by an optimal automatic optimizer.
 -------------------------------------------------------------------------------------
 
 	Polly can reimport jscop files, in which the schedules of the statements
-        are changed. These changed schedules are used to descripe
+        are changed. These changed schedules are used to describe
         transformations. It is possible to import 
diff erent jscop files by
         providing the postfix of the jscop file that is imported.
 

diff  --git a/polly/docs/TipsAndTricks.rst b/polly/docs/TipsAndTricks.rst
index 38df79a996662..f8b5166ed9b28 100644
--- a/polly/docs/TipsAndTricks.rst
+++ b/polly/docs/TipsAndTricks.rst
@@ -2,8 +2,8 @@
 Tips and Tricks on using and contributing to Polly
 ==================================================
 
-Commiting to polly trunk
-------------------------
+Committing to polly trunk
+-------------------------
     - `General reference to git-svn workflow <https://stackoverflow.com/questions/190431/is-git-svn-dcommit-after-merging-in-git-dangerous>`_
 
 


        


More information about the llvm-commits mailing list