/external/tensorflow/tensorflow/python/compiler/tensorrt/model_tests/ |
D | result_analyzer.py | 39 self._rows = rows 44 return len(self._rows) if self._rows else len(self._columns[0]) 48 return len(self._columns) if self._columns else len(self._rows[0]) 56 return self._rows if self._rows else [ 63 [r[i] for r in self._rows] for i in range(len(self._rows[0])) 82 self._rows, self._columns = tmp._rows, tmp._columns 89 return self._rows[r][c] if self._rows else self._columns[c][r]
|
/external/eigen/Eigen/src/Core/products/ |
D | TriangularMatrixVector_BLAS.h | 53 static void run(Index _rows, Index _cols, const Scalar* _lhs, Index lhsStride, \ 56 _rows, _cols, _lhs, lhsStride, _rhs, rhsIncr, _res, resIncr, alpha); \ 61 static void run(Index _rows, Index _cols, const Scalar* _lhs, Index lhsStride, \ 64 _rows, _cols, _lhs, lhsStride, _rhs, rhsIncr, _res, resIncr, alpha); \ 84 static void run(Index _rows, Index _cols, const EIGTYPE* _lhs, Index lhsStride, \ 89 _rows, _cols, _lhs, lhsStride, _rhs, rhsIncr, _res, resIncr, alpha); \ 92 Index size = (std::min)(_rows,_cols); \ 93 Index rows = IsLower ? _rows : size; \ 166 static void run(Index _rows, Index _cols, const EIGTYPE* _lhs, Index lhsStride, \ 171 _rows, _cols, _lhs, lhsStride, _rhs, rhsIncr, _res, resIncr, alpha); \ [all …]
|
D | TriangularMatrixMatrix_BLAS.h | 59 …static inline void run(Index _rows, Index _cols, Index _depth, const Scalar* _lhs, Index lhsStride… 64 _rows, _cols, _depth, _lhs, lhsStride, _rhs, rhsStride, res, resStride, alpha, blocking); \ 95 Index _rows, Index _cols, Index _depth, \ 101 Index diagSize = (std::min)(_rows,_depth); \ 102 Index rows = IsLower ? _rows : diagSize; \ 119 … _rows, _cols, _depth, _lhs, lhsStride, _rhs, rhsStride, res, resStride, alpha, blocking); \ 126 …gemm_blocking_space<ColMajor,EIGTYPE,EIGTYPE,Dynamic,Dynamic,Dynamic> gemm_blocking(_rows,_cols,_d… 206 Index _rows, Index _cols, Index _depth, \ 213 Index rows = _rows; \ 229 … _rows, _cols, _depth, _lhs, lhsStride, _rhs, rhsStride, res, resStride, alpha, blocking); \ [all …]
|
D | TriangularMatrixVector.h | 29 …static EIGEN_DONT_INLINE void run(Index _rows, Index _cols, const LhsScalar* _lhs, Index lhsStrid… 35 ::run(Index _rows, Index _cols, const LhsScalar* _lhs, Index lhsStride, 39 Index size = (std::min)(_rows,_cols); 40 Index rows = IsLower ? _rows : (std::min)(_rows,_cols); 41 Index cols = IsLower ? (std::min)(_rows,_cols) : _cols; 100 …static EIGEN_DONT_INLINE void run(Index _rows, Index _cols, const LhsScalar* _lhs, Index lhsStride, 106 ::run(Index _rows, Index _cols, const LhsScalar* _lhs, Index lhsStride, 110 Index diagSize = (std::min)(_rows,_cols); 111 Index rows = IsLower ? _rows : diagSize;
|
D | TriangularMatrixMatrix.h | 95 Index _rows, Index _cols, Index _depth, 108 Index _rows, Index _cols, Index _depth, 115 Index diagSize = (std::min)(_rows,_depth); 116 Index rows = IsLower ? _rows : diagSize; 245 Index _rows, Index _cols, Index _depth, 258 Index _rows, Index _cols, Index _depth, 267 Index rows = _rows;
|
/external/ImageMagick/Magick++/lib/ |
D | Pixels.cpp | 24 _rows(0) in Pixels() 43 _rows=rows_; in get() 59 _rows=rows_; in getConst() 82 _rows=rows_; in set()
|
D | STL.cpp | 892 _rows( roll_.height() ) in rollImage() 898 _rows( rows_ ) in rollImage() 903 image_.roll( _columns, _rows ); in operator ()()
|
/external/ImageMagick/Magick++/lib/Magick++/ |
D | Pixels.h | 77 size_t _rows; // Height of view variable 149 return _rows; in rows()
|
D | STL.h | 942 size_t _rows; variable
|
/external/tensorflow/tensorflow/python/tpu/ |
D | tpu_embedding_v2_test.py | 171 self._rows = rows 174 vocabulary_size=self._rows, dim=4, initializer=self._initializer,
|