未验证 提交 cff1ef2b 编写于 作者: zhouweiwei2014's avatar zhouweiwei2014 提交者: GitHub

fix test_poisson UT (#43315)

上级 811d57d8
...@@ -45,8 +45,8 @@ class TestPoissonOp1(OpTest): ...@@ -45,8 +45,8 @@ class TestPoissonOp1(OpTest):
self.config() self.config()
self.attrs = {} self.attrs = {}
self.inputs = {'X': np.full([1024, 1024], self.lam, dtype=self.dtype)} self.inputs = {'X': np.full([2048, 1024], self.lam, dtype=self.dtype)}
self.outputs = {'Out': np.ones([1024, 1024], dtype=self.dtype)} self.outputs = {'Out': np.ones([2048, 1024], dtype=self.dtype)}
def config(self): def config(self):
self.lam = 10 self.lam = 10
...@@ -66,9 +66,9 @@ class TestPoissonOp1(OpTest): ...@@ -66,9 +66,9 @@ class TestPoissonOp1(OpTest):
self.check_grad( self.check_grad(
['X'], ['X'],
'Out', 'Out',
user_defined_grads=[np.zeros([1024, 1024], dtype=self.dtype)], user_defined_grads=[np.zeros([2048, 1024], dtype=self.dtype)],
user_defined_grad_outputs=[ user_defined_grad_outputs=[
np.random.rand(1024, 1024).astype(self.dtype) np.random.rand(2048, 1024).astype(self.dtype)
]) ])
...@@ -77,7 +77,7 @@ class TestPoissonOp2(TestPoissonOp1): ...@@ -77,7 +77,7 @@ class TestPoissonOp2(TestPoissonOp1):
def config(self): def config(self):
self.lam = 5 self.lam = 5
self.a = 1 self.a = 1
self.b = 9 self.b = 8
self.dtype = "float32" self.dtype = "float32"
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册