(self)
| 344 | self.assertAllEqual([[-10, -20, -30, -40], [10, 20, 30, 40]], y) |
| 345 | |
| 346 | def testIdentity(self): |
| 347 | self.assertAllEqual(2, array_ops.identity(2)) |
| 348 | |
| 349 | @test_util.run_gpu_only |
| 350 | def testIdentityOnVariable(self): |
nothing calls this directly
no test coverage detected