You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: text/0000-ppv.md
+7-6Lines changed: 7 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -174,9 +174,10 @@ Operations on vector types can be either:
174
174
`false` for each of the vector lanes. Most vertical operations are binary operations (they take two input vectors). These operations are typically very fast on most architectures and they are the most widely used in practice.
175
175
176
176
***horizontal**: that is, along a single vector - they are unary operations.
177
-
For example, `a.sum()` adds the elements of a vector together while
178
-
`a.hmax()` returns the largest element in a vector. These operations
179
-
(typically) translate to a sequence of multiple SIMD instructions on most architectures and are therefore slower. In many cases, they are, however, necessary.
177
+
For example, `a.sum()` adds the elements of a vector together while `a.hmax()`
178
+
returns the largest element in a vector. These operations (typically)
179
+
translate to a sequence of multiple SIMD instructions on most architectures
180
+
and are therefore slower. In many cases, they are, however, necessary.
180
181
181
182
## Example: Average
182
183
@@ -617,13 +618,13 @@ All signed and unsigned integer vectors implement the following methods:
0 commit comments