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
Feature functionality
Currently, the input tensors x, y for logical.isclose get sanitized within logical._sanitize_close_input. Part of the job is to redistribute y based on the split direction of x if y.split != x.split.
Problem: x and y must be broadcastable, and if y.split != x.split, broadcasting must happen before redistributing along the new split axis.
The text was updated successfully, but these errors were encountered:
ClaudiaComito
changed the title
logical._sanitate_close_input should check shapes and broadcast before redistributing
logical._sanitate_close_input should check shapes, and broadcast before redistributing
Jan 20, 2020
Feature functionality
Currently, the input tensors
x, y
for logical.isclose get sanitized within logical._sanitize_close_input. Part of the job is to redistributey
based on the split direction ofx
ify.split != x.split
.Problem: x and y must be broadcastable, and if
y.split != x.split
, broadcasting must happen before redistributing along the new split axis.The text was updated successfully, but these errors were encountered: