Skip to content

Commit

Permalink
refine
Browse files Browse the repository at this point in the history
  • Loading branch information
wanghuancoder committed Aug 26, 2022
1 parent b516f08 commit c0ecbe1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/paddle/fluid/tests/unittests/test_reverse_op.py
Expand Up @@ -268,7 +268,7 @@ def test_api(self):
x = paddle.randn([4, 10])
y = paddle.randn([4, 10])

out = paddle._C_ops.final_state_reverse_array([x, y], [0])
out = paddle._C_ops.reverse_array([x, y], [0])
np.testing.assert_allclose(x.numpy(), out[1].numpy())
np.testing.assert_allclose(y.numpy(), out[0].numpy())

Expand Down

0 comments on commit c0ecbe1

Please sign in to comment.