(self)
| 99 | # EagerTensor.__init__. |
| 100 | @test_util.run_gpu_only |
| 101 | def testInt32CPUDefault(self): |
| 102 | with context.device('/gpu:0'): |
| 103 | r = constant_op.constant(1) + constant_op.constant(2) |
| 104 | self.assertAllEqual(r, 3) |
| 105 | |
| 106 | def testExecuteListOutputLen1(self): |
| 107 | split_dim = constant_op.constant(1) |
nothing calls this directly
no test coverage detected