(self, shape, dtype)
| 454 | return math_ops.add(mul, mean_tensor, name=name) |
| 455 | |
| 456 | def _uniform(self, shape, dtype): |
| 457 | return gen_stateful_random_ops.stateful_uniform( |
| 458 | self.state.handle, self.algorithm, shape=shape, dtype=dtype) |
| 459 | |
| 460 | def uniform(self, shape, minval=0, maxval=None, |
| 461 | dtype=dtypes.float32, name=None): |
no outgoing calls