/external/eigen/Eigen/ |
D | SVD | 17 /** \defgroup SVD_Module SVD module 21 * This module provides SVD decomposition for matrices (both real and complex). 30 * #include <Eigen/SVD> 35 #include "src/SVD/UpperBidiagonalization.h" 36 #include "src/SVD/SVDBase.h" 37 #include "src/SVD/JacobiSVD.h" 38 #include "src/SVD/BDCSVD.h" 41 #include "src/SVD/JacobiSVD_LAPACKE.h"
|
D | Dense | 5 #include "SVD"
|
D | Geometry | 15 #include "SVD"
|
/external/tensorflow/tensorflow/compiler/xla/client/lib/ |
D | svd_test.cc | 130 auto result = SVD(a, 100, 1e-6); in XLA_TEST_F() 142 auto result = SVD(a, 100, 1e-8); in XLA_TEST_F() 154 auto result = SVD(a, 100, 1e-8); in XLA_TEST_F() 167 auto result = SVD(a, 100, 1e-8); in XLA_TEST_F() 184 auto result = SVD(a, 100, 1e-8); in XLA_TEST_F() 198 auto result = SVD(a, 100, 1e-4); in XLA_TEST_F() 210 auto result = SVD(a, 100, 1e-4); in XLA_TEST_F() 222 auto result = SVD(a, 100, 1e-4); in XLA_TEST_F() 236 auto result = SVD(a, 100, 1e-4); in XLA_TEST_F() 250 auto result = SVD(a, 100, 1e-4); in XLA_TEST_F() [all …]
|
D | svd.h | 44 SVDResult SVD(XlaOp a, int64 max_iter = 100, float epsilon = 1e-6,
|
D | svd.cc | 808 SVDResult SVD(XlaOp a, int64 max_iter, float epsilon, in SVD() function
|
/external/eigen/doc/ |
D | LeastSquares.dox | 10 The three methods discussed on this page are the SVD decomposition, the QR decomposition and normal 11 equations. Of these, the SVD decomposition is generally the most accurate but the slowest, normal 17 \section LeastSquaresSVD Using the SVD decomposition 21 this class); you also need the singular vectors but the thin SVD decomposition suffices for
|
D | B01_Experimental.dox | 23 \li SVD
|
D | TopicLinearAlgebraDecompositions.dox | 125 <td>R-SVD</td> 231 <li><a name="note2">\b 2: </a>Eigenvalues, SVD and Schur decompositions rely on iterative algorithm…
|
D | TutorialLinearAlgebra.dox | 6 QR, %SVD, eigendecompositions... After reading this page, don't miss our 186 The most accurate method to do least squares solving is with a SVD decomposition. Eigen provides one
|
D | A05_PortingFrom2To3.dox | 181 <td>SVD</td> 183 <td class="alt">We currently don't have a bidiagonalizing SVD; of course this is planned.</td>
|
D | QuickReference.dox | 21 <tr class="alt"><td>\link SVD_Module SVD \endlink</td><td>\code#include <Eigen/SVD>\endcode</td><td… 25 …clude <Eigen/Dense>\endcode</td><td>Includes Core, Geometry, LU, Cholesky, SVD, QR, and Eigenvalue…
|
D | AsciiQuickReference.txt | 202 x = A.svd() .solve(b)); // Stable, slowest. #include <Eigen/SVD>
|
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/ |
D | xla_svd_op.cc | 42 auto result = xla::SVD(ctx->Input(0), max_iter_, epsilon_, in Compile() 69 auto result = xla::SVD(ctx->Input(0), max_iter, 1e-6); in Compile()
|
/external/eigen/Eigen/src/SVD/ |
D | JacobiSVD.h | 356 typedef JacobiSVD<MatrixType, QRPreconditioner> SVD; 358 static bool run(typename SVD::WorkMatrixType&, SVD&, Index, Index, RealScalar&) { return true; } 364 typedef JacobiSVD<MatrixType, QRPreconditioner> SVD; 367 …static bool run(typename SVD::WorkMatrixType& work_matrix, SVD& svd, Index p, Index q, RealScalar&…
|
/external/tensorflow/third_party/eigen3/ |
D | BUILD | 25 "Eigen/SVD",
|
D | LICENSE | 259 ./unsupported/Eigen/src/SVD/JacobiSVD.h 260 ./unsupported/Eigen/src/SVD/BDCSVD.h 261 ./unsupported/Eigen/src/SVD/SVDBase.h 326 ./Eigen/src/Eigen2Support/SVD.h 390 ./Eigen/src/SVD/JacobiSVD.h 391 ./Eigen/src/SVD/UpperBidiagonalization.h 955 ./Eigen/src/SVD/JacobiSVD_MKL.h 956 ./Eigen/src/SVD/JacobiSVD_MKL.h
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_Svd.pbtxt | 50 Computes the SVD of each inner matrix in `input` such that
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/ |
D | AddressSanitizer.cpp | 3011 SmallVector<ASanStackVariableDescription, 16> SVD; in processStaticAllocas() local 3012 SVD.reserve(AllocaVec.size()); in processStaticAllocas() 3021 SVD.push_back(D); in processStaticAllocas() 3029 ComputeASanStackFrameLayout(SVD, Granularity, MinHeaderSize); in processStaticAllocas() 3033 for (auto &Desc : SVD) in processStaticAllocas() 3054 auto DescriptionString = ComputeASanStackFrameDescription(SVD); in processStaticAllocas() 3122 for (const auto &Desc : SVD) { in processStaticAllocas() 3154 const auto &ShadowAfterScope = GetShadowBytesAfterScope(SVD, L); in processStaticAllocas() 3163 const auto &ShadowInScope = GetShadowBytes(SVD, L); in processStaticAllocas()
|
/external/llvm-project/llvm/lib/Transforms/Instrumentation/ |
D | AddressSanitizer.cpp | 3134 SmallVector<ASanStackVariableDescription, 16> SVD; in processStaticAllocas() local 3135 SVD.reserve(AllocaVec.size()); in processStaticAllocas() 3144 SVD.push_back(D); in processStaticAllocas() 3152 ComputeASanStackFrameLayout(SVD, Granularity, MinHeaderSize); in processStaticAllocas() 3156 for (auto &Desc : SVD) in processStaticAllocas() 3177 auto DescriptionString = ComputeASanStackFrameDescription(SVD); in processStaticAllocas() 3255 for (const auto &Desc : SVD) { in processStaticAllocas() 3287 const auto &ShadowAfterScope = GetShadowBytesAfterScope(SVD, L); in processStaticAllocas() 3296 const auto &ShadowInScope = GetShadowBytes(SVD, L); in processStaticAllocas()
|
/external/llvm/lib/Transforms/Instrumentation/ |
D | AddressSanitizer.cpp | 2071 SmallVector<ASanStackVariableDescription, 16> SVD; in poisonStack() local 2072 SVD.reserve(AllocaVec.size()); in poisonStack() 2077 SVD.push_back(D); in poisonStack() 2083 ComputeASanStackFrameLayout(SVD, 1ULL << Mapping.Scale, MinHeaderSize, &L); in poisonStack() 2147 for (const auto &Desc : SVD) { in poisonStack()
|
/external/libaom/libaom/av1/encoder/ |
D | mathutils.h | 319 static INLINE int SVD(double *U, double *W, double *V, double *matx, int M, in SVD() function
|
/external/tensorflow/tensorflow/compiler/xla/python/ |
D | ops.cc | 219 auto svd = SVD(a, max_iter, epsilon); in BuildOpsSubmodule()
|
/external/tensorflow/tensorflow/ |
D | opensource_only.files | 72 tensorflow/third_party/eigen3/Eigen/SVD
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CGStmtOpenMP.cpp | 4194 VarDecl *SVD = nullptr; in EmitOMPTargetTaskBasedDirective() local 4211 SVD = createImplicitFirstprivateForType(getContext(), Data, SizesType, CD, in EmitOMPTargetTaskBasedDirective() 4217 TargetScope.addPrivate(SVD, in EmitOMPTargetTaskBasedDirective() 4236 auto &&CodeGen = [&Data, &S, CS, &BodyGen, BPVD, PVD, SVD, MVD, in EmitOMPTargetTaskBasedDirective() 4276 CGF.GetAddrOfLocalVar(SVD), /*Index=*/0); in EmitOMPTargetTaskBasedDirective()
|