(self)
| 239 | init_ops.Zeros(), tensor_shape, target_mean=0., target_max=0.) |
| 240 | |
| 241 | def test_Ones(self): |
| 242 | shape = (4, 5) |
| 243 | with self.cached_session(): |
| 244 | for tensor_shape in [shape, tensor_shape_lib.TensorShape(shape)]: |
| 245 | self._runner( |
| 246 | init_ops.Ones(), tensor_shape, target_mean=1., target_max=1.) |
| 247 | |
| 248 | |
| 249 | if __name__ == '__main__': |
nothing calls this directly
no test coverage detected