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
In our bump to numpy 2.0 we had to stop supporting the C implementation of this Op #1194
This was because we were using this PyArrayMapIter functionality that numpy removed. The Op needs to be able to iterate over the first dimension of an array to increment the values provided in y. This increment may need to broadcast with the selected entries.
One option is to reuse IncSubtensor which already allow doing this for x[0].inc(y), we could try to call the inner logic in a loop over the leading indexes
Description
In our bump to numpy 2.0 we had to stop supporting the C implementation of this Op #1194
This was because we were using this
PyArrayMapIter
functionality that numpy removed. The Op needs to be able to iterate over the first dimension of an array to increment the values provided iny
. This increment may need to broadcast with the selected entries.Example:
It's a restricted version of
numpy.add.at
, where indices must be a single integer vector, whereasnumpy.add.at
supports arbitrary advanced indexing.The text was updated successfully, but these errors were encountered: