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

Method testSvd

tensorflow/compiler/tests/svd_op_test.py:85–89  ·  view source on GitHub ↗
(self, n, dtype)

Source from the content-addressed store, hash-verified

83
84 @parameterized.parameters(*PARAMS)
85 def testSvd(self, n, dtype):
86 for batch_dims in [(), (3,)] + [(3, 2)] * (n < 10):
87 self._testSvdCorrectness(dtype, batch_dims + (n, n))
88 self._testSvdCorrectness(dtype, batch_dims + (2 * n, n))
89 self._testSvdCorrectness(dtype, batch_dims + (n, 2 * n))
90
91
92if __name__ == "__main__":

Callers

nothing calls this directly

Calls 1

_testSvdCorrectnessMethod · 0.95

Tested by

no test coverage detected