Lines Matching refs:major
5 …e two different storage orders for matrices and two-dimensional arrays: column-major and row-major.
11 \section TopicStorageOrdersIntro Column-major and row-major storage
16 We say that a matrix is stored in \b row-major order if it is stored row by row. The entire first r…
27 If this matrix is stored in row-major order, then the entries are laid out in memory as follows:
31 On the other hand, a matrix is stored in \b column-major order if it is stored column by column, st…
33 column-major order, it is laid out as follows:
56 parameter is set to \c RowMajor, then the matrix or array is stored in row-major order; if it is se…
57 \c ColMajor, then it is stored in column-major order. This mechanism is used in the above Eigen pro…
60 If the storage order is not specified, then Eigen defaults to storing the entry in column-major. Th…
65 the entries automatically. More generally, row-major and column-major matrices can be mixed in an e…
77 …ithms that traverse a matrix row by row will go faster when the matrix is stored in row-major order
78 … because of better data locality. Similarly, column-by-column traversal is faster for column-major
81 …- The default in Eigen is column-major. Naturally, most of the development and testing of the Eige…
82 …is thus done with column-major matrices. This means that, even though we aim to support column-maj…
83 …row-major storage orders transparently, the Eigen library may well work best with column-major mat…