Enqueues a QR decomposition onto the computation.
(self, a, full_matrices=True)
| 1577 | return ops.Sort(self._builder, [keys, values], dimension) |
| 1578 | |
| 1579 | def QR(self, a, full_matrices=True): |
| 1580 | """Enqueues a QR decomposition onto the computation.""" |
| 1581 | return self.Tuple(*ops.QR(a, full_matrices)) |
| 1582 | |
| 1583 | def TriangularSolve(self, |
| 1584 | a, |