(self)
| 348 | |
| 349 | @test_util.run_gpu_only |
| 350 | def testIdentityOnVariable(self): |
| 351 | with context.device('/gpu:0'): |
| 352 | v = resource_variable_ops.ResourceVariable(True) |
| 353 | self.assertAllEqual(True, array_ops.identity(v)) |
| 354 | |
| 355 | def testIncompatibleSetShape(self): |
| 356 | x = constant_op.constant(1) |
nothing calls this directly
no test coverage detected