From e8381f2ab26417c462fb5b7e162e8c4c8eb4f7cd Mon Sep 17 00:00:00 2001 From: JiangZhaoh Date: Wed, 19 Feb 2020 03:36:58 +0000 Subject: [PATCH] retrigger CI --- tests/python/unittest/test_numpy_op.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/python/unittest/test_numpy_op.py b/tests/python/unittest/test_numpy_op.py index 935bd2a881ff..d1e87a2c024d 100644 --- a/tests/python/unittest/test_numpy_op.py +++ b/tests/python/unittest/test_numpy_op.py @@ -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():