Home
last modified time | relevance | path

Searched defs:svd (Results 1 – 9 of 9) sorted by relevance

/external/eigen/Eigen/src/SVD/
DJacobiSVD.h76 void allocate(const JacobiSVD<MatrixType, FullPivHouseholderQRPreconditioner>& svd) in allocate()
86 bool run(JacobiSVD<MatrixType, FullPivHouseholderQRPreconditioner>& svd, const MatrixType& matrix) in run()
122 void allocate(const JacobiSVD<MatrixType, FullPivHouseholderQRPreconditioner>& svd) in allocate()
133 bool run(JacobiSVD<MatrixType, FullPivHouseholderQRPreconditioner>& svd, const MatrixType& matrix) in run()
159 void allocate(const JacobiSVD<MatrixType, ColPivHouseholderQRPreconditioner>& svd) in allocate()
170 bool run(JacobiSVD<MatrixType, ColPivHouseholderQRPreconditioner>& svd, const MatrixType& matrix) in run()
213 void allocate(const JacobiSVD<MatrixType, ColPivHouseholderQRPreconditioner>& svd) in allocate()
225 bool run(JacobiSVD<MatrixType, ColPivHouseholderQRPreconditioner>& svd, const MatrixType& matrix) in run()
258 void allocate(const JacobiSVD<MatrixType, HouseholderQRPreconditioner>& svd) in allocate()
269 bool run(JacobiSVD<MatrixType, HouseholderQRPreconditioner>& svd, const MatrixType& matrix) in run()
[all …]
/external/eigen/doc/snippets/
DJacobiSVD_basic.cpp3 JacobiSVD<MatrixXf> svd(m, ComputeThinU | ComputeThinV); variable
/external/eigen/test/
Dsvd_common.h24 void svd_check_full(const MatrixType& m, const SvdType& svd) in svd_check_full()
284 SvdType svd; in svd_inf_nan() local
451 SvdType svd; in svd_verify_assert() local
Dqr_colpivoting.cpp57 JacobiSVD<MatrixType> svd(matrix, ComputeThinU | ComputeThinV); in cod() local
89 JacobiSVD<MatrixType> svd(matrix, ComputeFullU | ComputeFullV); in cod_fixedsize() local
/external/tensorflow/tensorflow/compiler/xla/python/
Dops.cc219 auto svd = SVD(a, max_iter, epsilon); in BuildOpsSubmodule() local
/external/tensorflow/tensorflow/python/ops/
Dlinalg_ops.py491 def svd(tensor, full_matrices=False, compute_uv=True, name=None): function
/external/tensorflow/tensorflow/compiler/jit/
Dintroduce_floating_point_jitter_pass_test.cc153 ops::Svd svd(root.WithOpName("svd"), input); in TEST() local
/external/tensorflow/tensorflow/python/ops/linalg/
Dlinalg_impl.py61 svd = linalg_ops.svd variable
/external/tensorflow/tensorflow/compiler/tf2xla/python/
Dxla.py313 def svd(a, max_iter, epsilon, precision_config=None): function