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

Faster implementation of Join in C backend #1340

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

ricardoV94
Copy link
Member

@ricardoV94 ricardoV94 commented Apr 1, 2025

The numpy C-API function has a lot of overhead, as it is made to work with arbitrary types of sequences from Python, plus arguments we don't care about.

Also importantly it doesn't allow one to manage their own buffer, which is useful when we have GC disabled in the C-backend.

I've saw 2x local speedup for small joins (where the copy overhead is smaller and we are bounded by the overhead).

Also simplified the implementation by removing the exotic view_flag, which closes #753


📚 Documentation preview 📚: https://pytensor--1340.org.readthedocs.build/en/1340/

Reuse outputs when possible, and avoid numpy overhead on public facing function
@ricardoV94 ricardoV94 force-pushed the faster_join_impl_c_backend branch from d8efc2f to 9b81d41 Compare April 2, 2025 12:10
@ricardoV94 ricardoV94 marked this pull request as draft April 2, 2025 17:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Get rid of join view flag
1 participant