-
Notifications
You must be signed in to change notification settings - Fork 367
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
Multithreaded custom grouped operations with single-row result #2588
Merged
Commits on Jan 21, 2021
-
Multithreaded custom grouped operations with single-row result
Spawn one task per thread in `_combine_rows_with_first!` so that custom grouped operations that return a single row are run in parallel. This is optimal if operations take about the same time for all groups. Spawning one task per group could be faster if these times vary a lot, but the overhead would be larger: we could add this as an option later. The implementation is somewhat tricky as output columns need to be reallocated when a new return type is detected.
Configuration menu - View commit details
-
Copy full SHA for 1d5467d - Browse repository at this point
Copy the full SHA 1d5467dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 13f4f76 - Browse repository at this point
Copy the full SHA 13f4f76View commit details -
Configuration menu - View commit details
-
Copy full SHA for 135512b - Browse repository at this point
Copy the full SHA 135512bView commit details -
Configuration menu - View commit details
-
Copy full SHA for c5930a9 - Browse repository at this point
Copy the full SHA c5930a9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 30a650c - Browse repository at this point
Copy the full SHA 30a650cView commit details -
Configuration menu - View commit details
-
Copy full SHA for d94539f - Browse repository at this point
Copy the full SHA d94539fView commit details
Commits on Jan 28, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 77a0d72 - Browse repository at this point
Copy the full SHA 77a0d72View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7c97723 - Browse repository at this point
Copy the full SHA 7c97723View commit details
Commits on Feb 6, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 7d26ba2 - Browse repository at this point
Copy the full SHA 7d26ba2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9f97dfb - Browse repository at this point
Copy the full SHA 9f97dfbView commit details
Commits on Feb 7, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 8b6fe9b - Browse repository at this point
Copy the full SHA 8b6fe9bView commit details
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.