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.
For example:
in mxnet.numpy
for two ndarray a,b with dtype='int64', the dtype of result c = a / b is 'float32'
in numpy
the dtype is 'float64'
Generally, when calculating division, mxnet.numpy often uses float32 while numpy uses float64.
Using float32 will often lead to the loss of floating point precision.
For example:
in mxnet.numpy
for two ndarray a,b with dtype='int64', the dtype of result c = a / b is 'float32'
in numpy
the dtype is 'float64'
Generally, when calculating division, mxnet.numpy often uses float32 while numpy uses float64.
Using float32 will often lead to the loss of floating point precision.