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

Commit

Permalink
fix CI error
Browse files Browse the repository at this point in the history
  • Loading branch information
JiangZhaoh committed May 12, 2020
1 parent 357be34 commit e7f0f36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/python/unittest/test_numpy_op.py
Original file line number Diff line number Diff line change
Expand Up @@ -2388,7 +2388,7 @@ def hybrid_forward(self, F, a, *args, **kwargs):
np_func = getattr(_np, func)
mx_func = TestUnary(func)
np_test_data = _np.random.uniform(low, high, shape).astype(_np.int32)
mx_test_data = mx.numpy.array(np_test_data)
mx_test_data = mx.numpy.array(np_test_data).astype(_np.int32)
for hybridize in [True, False]:
if hybridize:
mx_func.hybridize()
Expand Down

0 comments on commit e7f0f36

Please sign in to comment.