Skip to content

Commit

Permalink
better name
Browse files Browse the repository at this point in the history
  • Loading branch information
MarisaKirisame committed Mar 23, 2019
1 parent 33dd6d5 commit cbd6a35
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/python/relay/test_pass_gradient.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ def test_ref():
np.testing.assert_allclose(forward.asnumpy(), 2 * x_nd.asnumpy())
np.testing.assert_allclose(grad_x.asnumpy(), 2 * np.ones_like(grad_x.asnumpy()))

def test_second_order():
def test_square_second_order():
shape = (10, 10)
dtype = 'float32'
t = relay.TensorType(shape, dtype)
Expand Down Expand Up @@ -218,4 +218,4 @@ def test_second_order():
test_tuple()
test_pow()
test_ref()
test_second_order()
test_square_second_order()

0 comments on commit cbd6a35

Please sign in to comment.