Skip to content
New issue

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

ht.unique() returns torch.Tensor if run locally #464

Closed
ClaudiaComito opened this issue Jan 23, 2020 · 0 comments · Fixed by #465
Closed

ht.unique() returns torch.Tensor if run locally #464

ClaudiaComito opened this issue Jan 23, 2020 · 0 comments · Fixed by #465
Assignees
Labels
bug Something isn't working

Comments

@ClaudiaComito
Copy link
Contributor

ClaudiaComito commented Jan 23, 2020

Description
Output of ht.unique(X) is a torch tensor, not a heat tensor, when 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.

@ClaudiaComito ClaudiaComito added the bug Something isn't working label Jan 23, 2020
@ClaudiaComito ClaudiaComito self-assigned this Jan 23, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant