You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 17, 2023. It is now read-only.
The current mx.np.ndarray produces errors that cannot be tolerated in the face of simple division when the numerator and denominator data types have two differnt floating dtypes np.float32 and np.float64 such as
import mxnet as mx
import numpy as np
mx.npx.set_np()
numerator = mx.np.array(5.0).astype(np.float64)
denominator = mx.np.array(2.0)
numerator/denominator
>>>array(0., dtype=float64)