mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
* Block: row and column expressions in the inner direction
now have the Like1D flag. * Big renaming: packetCoeff ---> packet VectorizableBit ---> PacketAccessBit Like1DArrayBit ---> LinearAccessBit
This commit is contained in:
@@ -67,15 +67,15 @@ const unsigned int LargeBit = 0x8;
|
||||
/** \ingroup flags
|
||||
*
|
||||
* means the expression might be vectorized */
|
||||
const unsigned int VectorizableBit = 0x10;
|
||||
const unsigned int PacketAccessBit = 0x10;
|
||||
#else
|
||||
const unsigned int VectorizableBit = 0x0;
|
||||
const unsigned int PacketAccessBit = 0x0;
|
||||
#endif
|
||||
|
||||
/** \ingroup flags
|
||||
*
|
||||
* means the expression can be seen as 1D vector (used for explicit vectorization) */
|
||||
const unsigned int Like1DArrayBit = 0x20;
|
||||
const unsigned int LinearAccessBit = 0x20;
|
||||
|
||||
/** \ingroup flags
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user