aboutsummaryrefslogtreecommitdiff
path: root/doc/HiPerformance.dox
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-05-11 05:03:33 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-05-11 05:03:33 +0000
commit807e4bbb60c04faefab786355fa353ccc111b0f9 (patch)
treefb979fb4cf4f8052c8cc66b1ec9516d91fcd859b /doc/HiPerformance.dox
parent794909725477717c689707dbd3c4c680f8811ffe (diff)
parentedb0ad5bb04b48aab7dd0978f0475edd3550de7c (diff)
downloadeigen-android13-mainline-media-swcodec-release.tar.gz
Change-Id: Ia16eb5387012bf128743b4949ff56136bc7c6903
Diffstat (limited to 'doc/HiPerformance.dox')
-rw-r--r--doc/HiPerformance.dox2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/HiPerformance.dox b/doc/HiPerformance.dox
index ab6cdfd44..9cee3351c 100644
--- a/doc/HiPerformance.dox
+++ b/doc/HiPerformance.dox
@@ -105,7 +105,7 @@ m1.noalias() += m2 * m3; \endcode</td>
<td>First of all, here the .noalias() in the first expression is useless because
m2*m3 will be evaluated anyway. However, note how this expression can be rewritten
so that no temporary is required. (tip: for very small fixed size matrix
- it is slighlty better to rewrite it like this: m1.noalias() = m2 * m3; m1 += m4;</td>
+ it is slightly better to rewrite it like this: m1.noalias() = m2 * m3; m1 += m4;</td>
</tr>
<tr class="alt">
<td>\code