[llvm-commits] [llvm] r170504 - /llvm/trunk/docs/Vectorizers.rst
Nadav Rotem
nrotem at apple.com
Tue Dec 18 23:36:35 PST 2012
Author: nadav
Date: Wed Dec 19 01:36:35 2012
New Revision: 170504
URL: http://llvm.org/viewvc/llvm-project?rev=170504&view=rev
Log:
docs: fix typos.
Modified:
llvm/trunk/docs/Vectorizers.rst
Modified: llvm/trunk/docs/Vectorizers.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/Vectorizers.rst?rev=170504&r1=170503&r2=170504&view=diff
==============================================================================
--- llvm/trunk/docs/Vectorizers.rst (original)
+++ llvm/trunk/docs/Vectorizers.rst Wed Dec 19 01:36:35 2012
@@ -118,7 +118,7 @@
}
Pointer Induction Variables
---------------------------
+---------------------------
This example uses the "accumulate" function of the standard c++ library. This
loop uses C++ iterators, which are pointers, and not integer indices.
@@ -144,10 +144,10 @@
}
Scatter / Gather
---------------------------
+----------------
-The Loop Vectorizer can generate code diverging memory indices that result in
-scatter/gather memory accesses.
+The Loop Vectorizer can vectorize code that becomes scatter/gather
+memory accesses.
.. code-block:: c++
@@ -156,7 +156,7 @@
A[i*7] += B[i*k];
}
-Vectorization of programs with Mixed Types
+Vectorization of Mixed Types
--------------------------
The Loop Vectorizer can vectorize programs with mixed types. The Vectorizer
More information about the llvm-commits
mailing list