-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
ARROW-14048: [C++][Gandiva] Cache only object code in memory instead of entire module #11193
ARROW-14048: [C++][Gandiva] Cache only object code in memory instead of entire module #11193
Conversation
|
This should not have any effect on llvm performance only the memory footprint. Can you also include the numbers in the description. |
8b12dc2
to
05e5200
Compare
…tor and filter cache keys
547447b
to
61b98c5
Compare
Benchmark runs are scheduled for baseline = a6c81e6 and contender = 188c94a. 188c94a is a master commit associated with this PR. Results will be available as each benchmark for each run completes. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The best pull request <3
Implement Gandiva to cache object code instead the entire llvm module, improving the memory consumption.
To compare the optmization, the following test was written to verify the memory allocation used by the gandiva cache previous to this, and after this:
The results can be seen here:
To track the memory was used the Heaptrack application.