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
Improve inferability of shape::Dims for cat (#39294)
`cat` is often called with Varargs or heterogenous inputs,
and inference almost always fails. Even when all the arrays
are of the same type, if the number of varargs isn't known
inference typically fails. The culprit is probably #36454.
This reduces the number of failures considerably, by avoiding
creation of vararg length tuples in the shape-inference pipeline.
0 commit comments