(self)
| 131 | self.assertTrue(step_stats.dev_stats) |
| 132 | |
| 133 | def testAvailableOps(self): |
| 134 | with cluster.Provision() as gcluster: |
| 135 | op_names = gcluster.ListAvailableOps() |
| 136 | self.assertTrue('Add' in op_names) |
| 137 | self.assertTrue('MatMul' in op_names) |
| 138 | self.assertEqual(op_names, sorted(op_names)) |
| 139 | |
| 140 | def testSupportDevices(self): |
| 141 | with ops.Graph().as_default() as g: |
nothing calls this directly
no test coverage detected