HomeSort by relevance Sort by last modified time
    Searched defs:JacobiRotation (Results 1 - 3 of 3) sorted by null

  /external/eigen/Eigen/src/Jacobi/
Jacobi.h 18 * \class JacobiRotation
34 template<typename Scalar> class JacobiRotation
40 JacobiRotation() {}
43 JacobiRotation(const Scalar& c, const Scalar& s) : m_c(c), m_s(s) {}
51 JacobiRotation operator*(const JacobiRotation& other)
54 return JacobiRotation(m_c * other.m_c - conj(m_s) * other.m_s,
59 JacobiRotation transpose() const { using numext::conj; return JacobiRotation(m_c, -conj(m_s)); }
62 JacobiRotation adjoint() const { using numext::conj; return JacobiRotation(conj(m_c), -m_s);
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/client/lib/
self_adjoint_eig.cc 43 struct JacobiRotation {
77 StatusOr<JacobiRotation> SymmetricShurDecomposition2x2(XlaOp a, XlaOp p,
105 JacobiRotation schur;
116 TF_ASSIGN_OR_RETURN(JacobiRotation schur, SymmetricShurDecomposition2x2(
svd.cc 59 struct JacobiRotation {
74 JacobiRotation rot_l;
75 JacobiRotation rot_r;
368 StatusOr<JacobiRotation> MakeJacobi(XlaOp ps, XlaOp qs, XlaOp pqs, XlaOp eps) {
387 JacobiRotation rot;
437 JacobiRotation rot;

Completed in 370 milliseconds