aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/Coeffs.h
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2008-06-27 01:22:35 +0000
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2008-06-27 01:22:35 +0000
commite27b2b95cf566201810aa9f831c52bed3314d927 (patch)
treed41831d1e9353d3867bc9afa91a0598ddd2c2e4d /Eigen/src/Core/Coeffs.h
parente5d301dc961ddfaba6e38c497904b2aee378a7cc (diff)
* rework Map, allow vectorization
* rework PacketMath and DummyPacketMath, make these actual template specializations instead of just overriding by non-template inline functions * introduce ei_ploadt and ei_pstoret, make use of them in Map and Matrix * remove Matrix::map() methods, use Map constructors instead.
Diffstat (limited to 'Eigen/src/Core/Coeffs.h')
-rw-r--r--Eigen/src/Core/Coeffs.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Eigen/src/Core/Coeffs.h b/Eigen/src/Core/Coeffs.h
index cc8bc713c..0f87099e2 100644
--- a/Eigen/src/Core/Coeffs.h
+++ b/Eigen/src/Core/Coeffs.h
@@ -214,7 +214,7 @@ inline typename ei_traits<Derived>::Scalar& MatrixBase<Derived>
* to ensure that a packet really starts there. This method is only available on expressions having the
* PacketAccessBit.
*
- * The \a LoadMode parameter may have the value \a Aligned or \a UnAligned. Its effect is to select
+ * The \a LoadMode parameter may have the value \a Aligned or \a Unaligned. Its effect is to select
* the appropriate vectorization instruction. Aligned access is faster, but is only possible for packets
* starting at an address which is a multiple of the packet size.
*/
@@ -232,7 +232,7 @@ MatrixBase<Derived>::packet(int row, int col) const
* to ensure that a packet really starts there. This method is only available on expressions having the
* PacketAccessBit.
*
- * The \a LoadMode parameter may have the value \a Aligned or \a UnAligned. Its effect is to select
+ * The \a LoadMode parameter may have the value \a Aligned or \a Unaligned. Its effect is to select
* the appropriate vectorization instruction. Aligned access is faster, but is only possible for packets
* starting at an address which is a multiple of the packet size.
*/
@@ -250,7 +250,7 @@ inline void MatrixBase<Derived>::writePacket
* to ensure that a packet really starts there. This method is only available on expressions having the
* PacketAccessBit and the LinearAccessBit.
*
- * The \a LoadMode parameter may have the value \a Aligned or \a UnAligned. Its effect is to select
+ * The \a LoadMode parameter may have the value \a Aligned or \a Unaligned. Its effect is to select
* the appropriate vectorization instruction. Aligned access is faster, but is only possible for packets
* starting at an address which is a multiple of the packet size.
*/
@@ -267,7 +267,7 @@ MatrixBase<Derived>::packet(int index) const
* to ensure that a packet really starts there. This method is only available on expressions having the
* PacketAccessBit and the LinearAccessBit.
*
- * The \a LoadMode parameter may have the value \a Aligned or \a UnAligned. Its effect is to select
+ * The \a LoadMode parameter may have the value \a Aligned or \a Unaligned. Its effect is to select
* the appropriate vectorization instruction. Aligned access is faster, but is only possible for packets
* starting at an address which is a multiple of the packet size.
*/