forked from facebookincubator/velox
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for smallint to PrefixSort (facebookincubator#10946)
Summary: According to the benchmark, for data sets larger than 0.5k, PrefixSort outperforms std::sort with performance improvements ranging from approximately 250% to over 500%. Here's a summary of the benchmark results: | Dataset Size | PrefixSort Improvement (No Payload) |PrefixSort Improvement(With Payload) | |--------------|-------------------------------------|-------------------------------------| | 0.5k | 248.97% - 287.43% | 249.71% - 289.74% | | 1k | 214.44% - 310.92% | 215.03% - 315.14% | | 10k | 216.21% - 255.38% | 217.88% - 256.88% | | 100k | 279.81% - 318.26% | 284.89% - 295.21% | | 1000k | 304.36% - 351.31% | 454.04% - 514.28% | follow-up facebookincubator#8350 Part of facebookincubator#6766 Pull Request resolved: facebookincubator#10946 Reviewed By: Yuhta Differential Revision: D62373593 Pulled By: mbasmanova fbshipit-source-id: b8594e05cc6aee736d09db1695db770b84e9d4bd
- Loading branch information
1 parent
741876f
commit 98bbb73
Showing
4 changed files
with
116 additions
and
2 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
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
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
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