We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Description Output of ht.unique(X) is a torch tensor, not a heat tensor, when X.split is None
ht.unique(X)
X.split is None
To Reproduce
>>> X = ht.array([1, 1, 1, 2, 2, 2]) >>> isinstance(X, ht.DNDarray) True >>> isinstance(ht.unique(X), ht.DNDarray) False >>> isinstance(ht.unique(X), torch.Tensor) True
Expected behavior
>>> isinstance(ht.unique(X), ht.DNDarray) True >>> isinstance(ht.unique(X), torch.Tensor) False
Additional comments Tests should catch this.
The text was updated successfully, but these errors were encountered:
ClaudiaComito
Successfully merging a pull request may close this issue.
Description
Output of
ht.unique(X)
is a torch tensor, not a heat tensor, whenX.split is None
To Reproduce
Expected behavior
Additional comments
Tests should catch this.
The text was updated successfully, but these errors were encountered: