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
Description
ht.squeeze(axis) returns a non-distributed tensor in all cases, it should follow split semantics, e.g.:
output.split = None if input.split == None or input.split in axis output.split = input.split - n, where n is the number of elements in axis that are smaller than input.split
The text was updated successfully, but these errors were encountered:
Description
ht.squeeze(axis) returns a non-distributed tensor in all cases, it should follow split semantics, e.g.:
output.split = None if input.split == None or input.split in axis
output.split = input.split - n
, wheren
is the number of elements inaxis
that are smaller than input.splitThe text was updated successfully, but these errors were encountered: