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

__repr__ after a transpose is slow #110

Closed
devin-petersohn opened this issue Oct 4, 2018 · 0 comments · Fixed by #114
Closed

__repr__ after a transpose is slow #110

devin-petersohn opened this issue Oct 4, 2018 · 0 comments · Fixed by #114
Assignees
Labels
Performance 🚀 Performance related issues and pull requests.

Comments

@devin-petersohn
Copy link
Collaborator

Describe the problem

Previously, transpose was extremely slow and copied the entire dataset. Now we store some metadata and do the transpose at the same time as another operation.

It is instant to do df.T, but when you repr(df.T) it will trigger the transpose. We need to debug why it takes so long on the repr.

Source code / logs

> %time x = df.T
> %time repr(x)
@devin-petersohn devin-petersohn added the Performance 🚀 Performance related issues and pull requests. label Oct 4, 2018
@devin-petersohn devin-petersohn self-assigned this Oct 4, 2018
vnlitvinov pushed a commit to vnlitvinov/modin that referenced this issue Sep 16, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Performance 🚀 Performance related issues and pull requests.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant