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 #898 we left the following "known issues" open that we can fix after that PR's review and merge:
Rename BroadcastShape to DimMax - we also move the broadcast method out of the trait (it can just be a free function)
It is a wish that the D: Dimension + DimMax<E> bound in arith ops becomes just D: Dimension, i.e. the DimMax with associated type becomes implied by D: Dimension. At this point it is not certain how this can be done.
Preserve the allocation of the input array in arithmetic ops in more cases (when only the left/right side needs broadcast) in array + &array and &array + array
Preserve the allocation of the input array in arithmetic ops in more cases (when the left side needs broadcast in Array + Array)
Improve performance of "no-broadcasting-needed" scenario in &array + &array operation
Potentially provide public function or method similar to broadcast_with - that does the broadcasting of two arrays together.
The text was updated successfully, but these errors were encountered:
In #898 we left the following "known issues" open that we can fix after that PR's review and merge:
DimMax
- we also move the broadcast method out of the trait (it can just be a free function)D: Dimension + DimMax<E>
bound in arith ops becomes justD: Dimension
, i.e. the DimMax with associated type becomes implied byD: Dimension
. At this point it is not certain how this can be done.broadcast_with
- that does the broadcasting of two arrays together.The text was updated successfully, but these errors were encountered: