HomeSort by relevance Sort by last modified time
    Searched refs:RowMajor (Results 226 - 250 of 260) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/eigen/Eigen/src/SVD/
UpperBidiagonalization.h 35 typedef BandMatrix<RealScalar, ColsAtCompileTime, ColsAtCompileTime, 1, 0, RowMajor> BidiagonalType;
  /external/eigen/Eigen/src/SparseCore/
SparseMatrixBase.h 114 typedef SparseMatrix<Scalar, Flags&RowMajorBit ? RowMajor : ColMajor, StorageIndex> PlainObject;
SparseVector.h 400 EIGEN_STATIC_ASSERT((_Options&(ColMajor|RowMajor))==Options,INVALID_MATRIX_TEMPLATE_PARAMETERS);
SparseMatrix.h 34 * is ColMajor or RowMajor. The default is 0 which means column-major.
    [all...]
  /external/eigen/test/
eigensolver_selfadjoint.cpp 252 CALL_SUBTEST_9( selfadjointeigensolver(Matrix<std::complex<double>,Dynamic,Dynamic,RowMajor>(s,s)) );
product_notemporary.cpp 24 typedef Matrix<Scalar, Dynamic, Dynamic, RowMajor> RowMajorMatrixType;
ref.cpp 227 typedef Matrix<double,Dynamic,Dynamic,RowMajor> RowMatrixXd;
product_extra.cpp 202 Matrix<float,1,Dynamic,RowMajor,1,5> a(1,4);
332 typedef Matrix<double,4,4,RowMajor> RMatrix4d;
block.cpp 269 CALL_SUBTEST_7( data_and_stride(Matrix<int,Dynamic,Dynamic,RowMajor>(internal::random(5,50), internal::random(5,50))) );
product.h 31 MatrixType::Flags&RowMajorBit?ColMajor:RowMajor> OtherMajorMatrixType;
  /external/gemmlowp/internal/
pack.h 130 // so there WidthMajor means RowMajor, while in the Rhs it is the opposite.
402 MatrixMapType::kOrder == MapOrder::RowMajor ? SideMapOrder::WidthMajor
unpack.h 172 if (ResultBlockType::kOrder == MapOrder::RowMajor) {
  /external/tensorflow/tensorflow/contrib/tensorboard/db/
summary_converter.cc 65 typedef Eigen::Tensor<uint8, 2, Eigen::RowMajor> Uint8Image;
  /external/tensorflow/tensorflow/core/kernels/
dynamic_stitch_op.cc 89 Eigen::Tensor<int32, 0, Eigen::RowMajor> m =
meta_support.cc 125 gemmlowp::meta::RowMajor>
fused_batch_norm_op.cc 99 Eigen::Tensor<U, 1, Eigen::RowMajor> mean(depth);
100 Eigen::Tensor<U, 1, Eigen::RowMajor> variance(depth);
    [all...]
batch_matmul_op_impl.h 153 Eigen::Matrix<Scalar, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor>;
  /external/eigen/Eigen/src/Core/products/
GeneralMatrixVector.h 335 struct general_matrix_vector_product<Index,LhsScalar,LhsMapper,RowMajor,ConjugateLhs,RhsScalar,RhsMapper,ConjugateRhs,Version>
364 EIGEN_DONT_INLINE void general_matrix_vector_product<Index,LhsScalar,LhsMapper,RowMajor,ConjugateLhs,RhsScalar,RhsMapper,ConjugateRhs,Version>::run(
  /external/eigen/Eigen/src/Eigenvalues/
RealQZ.h 72 typedef Matrix<ComplexScalar, ColsAtCompileTime, 1, Options & ~RowMajor, MaxColsAtCompileTime, 1> EigenvalueType;
73 typedef Matrix<Scalar, ColsAtCompileTime, 1, Options & ~RowMajor, MaxColsAtCompileTime, 1> ColumnVectorType;
  /external/eigen/Eigen/src/Geometry/
Transform.h 100 * \tparam _Options has the same meaning as in class Matrix. It allows to specify DontAlign and/or RowMajor.
223 typedef Block<MatrixType,Dim,Dim,int(Mode)==(AffineCompact) && (Options&RowMajor)==0> LinearPart;
225 typedef const Block<ConstMatrixType,Dim,Dim,int(Mode)==(AffineCompact) && (Options&RowMajor)==0> ConstLinearPart;
692 EIGEN_STATIC_ASSERT((Options & (DontAlign|RowMajor)) == Options, INVALID_MATRIX_TEMPLATE_PARAMETERS)
    [all...]
  /external/eigen/Eigen/src/Core/util/
BlasUtil.h 218 return m_data[StorageOrder==RowMajor ? j + i*m_stride : i + j*m_stride];
Macros.h 330 #define EIGEN_DEFAULT_MATRIX_STORAGE_ORDER_OPTION Eigen::RowMajor
    [all...]
  /external/eigen/Eigen/src/SparseQR/
SparseQR.h 139 * SparseMatrix<double,RowMajor> Rr = qr.matrixR(); // row-major, sorted
267 SparseMatrix<Scalar, RowMajor, Index> mQrm(this->m_Q);
310 // Copy to a column major matrix if the input is rowmajor
  /external/tensorflow/tensorflow/contrib/factorization/kernels/
clustering_ops.cc 44 Eigen::Matrix<Scalar, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor>;
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorReduction.h 106 struct are_inner_most_dims<ReducedDims, NumTensorDims, RowMajor>{
121 struct preserve_inner_most_dims<ReducedDims, NumTensorDims, RowMajor>{
    [all...]

Completed in 594 milliseconds

1 2 3 4 5 6 7 8 91011