aboutsummaryrefslogtreecommitdiff
path: root/polly
diff options
context:
space:
mode:
authorKazu Hirata <kazu@google.com>2023-05-27 10:29:20 -0700
committerKazu Hirata <kazu@google.com>2023-05-27 10:29:20 -0700
commit27f7546f336263b0b9b569e0c8ec99a164c89d8f (patch)
tree893bde7960a6dfae838d18340472a90815ad72c3 /polly
parent96b59b4f06557b1821b2fb2acce193478239bfc3 (diff)
downloadllvm-27f7546f336263b0b9b569e0c8ec99a164c89d8f.zip
llvm-27f7546f336263b0b9b569e0c8ec99a164c89d8f.tar.gz
llvm-27f7546f336263b0b9b569e0c8ec99a164c89d8f.tar.bz2
[polly] Fix typos in documentation
Diffstat (limited to 'polly')
-rw-r--r--polly/docs/Architecture.rst2
-rw-r--r--polly/docs/HowToManuallyUseTheIndividualPiecesOfPolly.rst2
-rw-r--r--polly/docs/TipsAndTricks.rst4
3 files changed, 4 insertions, 4 deletions
diff --git a/polly/docs/Architecture.rst b/polly/docs/Architecture.rst
index 92cb97d..645d652 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 d8f80b8..e97ea8a 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 different 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 38df79a..f8b5166 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>`_