Home
last modified time | relevance | path

Searched refs:blockRows (Results 1 – 6 of 6) sorted by relevance

/external/eigen/Eigen/src/Core/
DBlock.h135 Index blockRows, Index blockCols)
136 : Impl(xpr, a_startRow, a_startCol, blockRows, blockCols)
138 eigen_assert((RowsAtCompileTime==Dynamic || RowsAtCompileTime==blockRows)
140 eigen_assert(a_startRow >= 0 && blockRows >= 0 && a_startRow <= xpr.rows() - blockRows
158 …inline BlockImpl(XprType& xpr, Index a_startRow, Index a_startCol, Index blockRows, Index blockCol…
159 : Impl(xpr, a_startRow, a_startCol, blockRows, blockCols) {}
202 Index blockRows, Index blockCols)
204 m_blockRows(blockRows), m_blockCols(blockCols)
348 Index blockRows, Index blockCols)
349 : Base(internal::const_cast_ptr(&xpr.coeffRef(startRow,startCol)), blockRows, blockCols),
[all …]
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
DBlockRealMatrix.java85 private final int blockRows; field in BlockRealMatrix
106 blockRows = (rows + BLOCK_SIZE - 1) / BLOCK_SIZE; in BlockRealMatrix()
156 blockRows = (rows + BLOCK_SIZE - 1) / BLOCK_SIZE; in BlockRealMatrix()
161 blocks = new double[blockRows * blockColumns][]; in BlockRealMatrix()
168 for (int iBlock = 0; iBlock < blockRows; ++iBlock) { in BlockRealMatrix()
211 final int blockRows = (rows + BLOCK_SIZE - 1) / BLOCK_SIZE; in toBlocksLayout() local
225 final double[][] blocks = new double[blockRows * blockColumns][]; in toBlocksLayout()
227 for (int iBlock = 0; iBlock < blockRows; ++iBlock) { in toBlocksLayout()
270 final int blockRows = (rows + BLOCK_SIZE - 1) / BLOCK_SIZE; in createBlocksLayout() local
273 final double[][] blocks = new double[blockRows * blockColumns][]; in createBlocksLayout()
[all …]
DBlockFieldMatrix.java87 private final int blockRows; field in BlockFieldMatrix
109 blockRows = (rows + BLOCK_SIZE - 1) / BLOCK_SIZE; in BlockFieldMatrix()
159 blockRows = (rows + BLOCK_SIZE - 1) / BLOCK_SIZE; in BlockFieldMatrix()
164 blocks = buildArray(getField(), blockRows * blockColumns, -1); in BlockFieldMatrix()
171 for (int iBlock = 0; iBlock < blockRows; ++iBlock) { in BlockFieldMatrix()
216 final int blockRows = (rows + BLOCK_SIZE - 1) / BLOCK_SIZE; in toBlocksLayout() local
231 final T[][] blocks = buildArray(field, blockRows * blockColumns, -1); in toBlocksLayout()
233 for (int iBlock = 0; iBlock < blockRows; ++iBlock) { in toBlocksLayout()
280 final int blockRows = (rows + BLOCK_SIZE - 1) / BLOCK_SIZE; in createBlocksLayout() local
283 final T[][] blocks = buildArray(field, blockRows * blockColumns, -1); in createBlocksLayout()
[all …]
/external/eigen/Eigen/src/Core/products/
DParallelizer.h129 Index blockRows = (rows / threads) & ~Index(0x7); in parallelize_gemm()
136 Index r0 = i*blockRows; in parallelize_gemm()
137 Index actualBlockRows = (i+1==threads) ? rows-r0 : blockRows; in parallelize_gemm()
/external/eigen/Eigen/src/plugins/
DBlockMethods.h56 inline Block<Derived> block(Index startRow, Index startCol, Index blockRows, Index blockCols) in block() argument
58 return Block<Derived>(derived(), startRow, startCol, blockRows, blockCols); in block()
62 inline const Block<const Derived> block(Index startRow, Index startCol, Index blockRows, Index bloc… in block() argument
64 return Block<const Derived>(derived(), startRow, startCol, blockRows, blockCols); in block()
713 Index blockRows, Index blockCols) in block() argument
715 return Block<Derived, BlockRows, BlockCols>(derived(), startRow, startCol, blockRows, blockCols); in block()
721 … Index blockRows, Index blockCols) const in block() argument
723 …return Block<const Derived, BlockRows, BlockCols>(derived(), startRow, startCol, blockRows, blockC… in block()
/external/eigen/Eigen/src/SparseCore/
DSparseBlock.h57 inline BlockImpl(const XprType& xpr, int startRow, int startCol, int blockRows, int blockCols) in BlockImpl() argument
58 …r), m_outerStart(IsRowMajor ? startRow : startCol), m_outerSize(IsRowMajor ? blockRows : blockCols) in BlockImpl()
122 …inline BlockImpl(const SparseMatrixType& xpr, int startRow, int startCol, int blockRows, int block… in BlockImpl() argument
123 …r), m_outerStart(IsRowMajor ? startRow : startCol), m_outerSize(IsRowMajor ? blockRows : blockCols) in BlockImpl()
293 …inline BlockImpl(const SparseMatrixType& xpr, int startRow, int startCol, int blockRows, int block… in BlockImpl() argument
294 …r), m_outerStart(IsRowMajor ? startRow : startCol), m_outerSize(IsRowMajor ? blockRows : blockCols) in BlockImpl()
403 inline BlockImpl(const XprType& xpr, int startRow, int startCol, int blockRows, int blockCols) in BlockImpl() argument
404 …: m_matrix(xpr), m_startRow(startRow), m_startCol(startCol), m_blockRows(blockRows), m_blockCols(b… in BlockImpl()