Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
retrigger CI
Browse files Browse the repository at this point in the history
  • Loading branch information
JiangZhaoh committed Feb 19, 2020
1 parent a422fcf commit e8381f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/python/unittest/test_numpy_op.py
Original file line number Diff line number Diff line change
Expand Up @@ -2728,9 +2728,9 @@ def GetNdim(tp):
obj_onp = obj
test_insert = TestInsert(obj=obj_mxnp, axis=axis)

a = mx.nd.random.uniform(-1.0, 1.0, shape=arr_shape).as_np_ndarray().astype(atype)
a = mx.nd.random.uniform(-10.0, 10.0, shape=arr_shape).as_np_ndarray().astype(atype)
a.attach_grad()
b = mx.nd.random.uniform(-1.0, 1.0, shape=val_shape).as_np_ndarray().astype(btype)
b = mx.nd.random.uniform(-10.0, 10.0, shape=val_shape).as_np_ndarray().astype(btype)
b.attach_grad()
expected_ret = _np.insert(a.asnumpy(), obj_onp, b.asnumpy(), axis=axis)
with mx.autograd.record():
Expand Down

0 comments on commit e8381f2

Please sign in to comment.