MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / Eigh

Method Eigh

tensorflow/compiler/xla/python/xla_client.py:1602–1604  ·  view source on GitHub ↗

Enqueues a symmetric/Hermitian eigendecomposition.

(self, a, full_matrices=True)

Source from the content-addressed store, hash-verified

1600 return ops.TriangularSolve(a, b, left_side, lower, unit_diagonal, transpose)
1601
1602 def Eigh(self, a, full_matrices=True):
1603 """Enqueues a symmetric/Hermitian eigendecomposition."""
1604 return self.Tuple(*ops.Eigh(a, full_matrices))
1605
1606 def SVD(self, a):
1607 """Enqueues a singular value decomposition."""

Callers 1

testEighMethod · 0.80

Calls 1

TupleMethod · 0.95

Tested by 1

testEighMethod · 0.64