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.
Description
The backward pass of tensordot (both regular and the integer version) operator uses workspace to store intermediate value, but then uses
ReduceAxesComputeImpl, which also uses workspace). See e.g. here:https://github.com/apache/incubator-mxnet/blob/bd55002/src/operator/numpy/np_tensordot_op-inl.h#L420-L428
Since there is only a single workspace storage in MXNet, this means that it is possible for the snippet linked above to
@szha @leezu