[polly] Fix typos in documentation

This commit is contained in:
Kazu Hirata 2023-05-27 10:29:20 -07:00
parent 96b59b4f06
commit 27f7546f33
3 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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.

View File

@ -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>`_