-
Notifications
You must be signed in to change notification settings - Fork 915
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This pull request is a substantial refactor of the internals of scan operations like `cummax` and `cumsum`. The new implementation moves nearly all logic to the `Frame` level. The resulting code improves performance and adds support for new features. In particular: - For data sizes where Python overheads dominate, `Series` operations are now 10-20% faster. More importantly, `DataFrame` operations are 2-3x faster. - Prefix sums are now automatically supported for Index types as well. - Prefix sums for `DataFrame` now support axis=1 (previously only reductions like `sum` did so). - Total code is halved Authors: - Vyas Ramasubramani (https://github.com/vyasr) Approvers: - GALI PREM SAGAR (https://github.com/galipremsagar) - Marlene (https://github.com/marlenezw) URL: #9021
- Loading branch information
Showing
4 changed files
with
300 additions
and
427 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.