未验证 提交 e112ea2b 编写于 作者: H hong 提交者: GitHub

fix uniform random (#21009) (#21057)

* fix uniform random; test=develop

* add uniform random test; test=develop
上级 4c56586a
......@@ -17885,7 +17885,7 @@ def uniform_random(shape, dtype='float32', min=-1.0, max=1.0, seed=0):
inputs = dict()
attrs = {'seed': seed, 'min': min, 'max': max}
if in_dygraph_mode():
attrs = {'shape': shape}
attrs['shape'] = shape
else:
if isinstance(shape, Variable):
shape.stop_gradient = True
......
......@@ -335,5 +335,15 @@ class TestUniformRandomOpSelectedRowsShapeTensorList(unittest.TestCase):
hist, prob, rtol=0, atol=0.01), "hist: " + str(hist))
class TestUniformRandomDygraphMode(unittest.TestCase):
def test_check_output(self):
with fluid.dygraph.guard():
x = fluid.layers.uniform_random(
[10], dtype="float32", min=0.0, max=1.0)
x_np = x.numpy()
for i in range(10):
self.assertTrue((x_np[i] > 0 and x_np[i] < 1.0))
if __name__ == "__main__":
unittest.main()
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册