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 has been archived by the owner on Nov 17, 2023. It is now read-only.
mx.nd.broadcast_like has unnecessarily strict dtype requirements for its two data inputs. PR #17977 was aimed to relax them but in MXNet 1.7 I still get the following error from this minimum example:
aligning dtypes by either casting a or b to the other dtype resolves the issue. But this is not a practical solution in my AMP use case as both tensors are fairly large and I want to avoid a copy.
Environment
mxnet-cu92 1.7.0
The text was updated successfully, but these errors were encountered:
Description
mx.nd.broadcast_like
has unnecessarily strict dtype requirements for its two data inputs. PR #17977 was aimed to relax them but in MXNet 1.7 I still get the following error from this minimum example:Error Message
To Reproduce
What have you tried to solve it?
aligning dtypes by either casting a or b to the other dtype resolves the issue. But this is not a practical solution in my AMP use case as both tensors are fairly large and I want to avoid a copy.
Environment
The text was updated successfully, but these errors were encountered: