-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
Reduced allocations in ShiftedJetProducerT #46789
Conversation
This avoids an unnecessary allocation and simplifies memory management.
- hold member data by value - avoid using a temporary std::vector and use a span which skips 3 indicies.
- reduced number of allocations - added fillDescriptions - moved to newer C++ syntax - switched to newer framework syntax
please test |
cms-bot internal usage |
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-46789/42772 |
A new Pull Request was created by @Dr15Jones for master. It involves the following packages:
@atpathak, @consuegs, @francescobrivio, @ftorrresd, @hqucms, @jfernan2, @mandrenguyen, @perrotta can you please review it and eventually sign? Thanks. cms-bot commands are listed here |
+1 Size: This PR adds an extra 28KB to repository Comparison SummarySummary:
|
The differences in the PR test appear to be unrelated to this PR (they are from HGCal which is known to produce inconsistent results). |
+1 |
+1 |
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-46789/42796 |
Pull request #46789 was updated. @atpathak, @consuegs, @francescobrivio, @perrotta can you please check and sign again. |
Thank you @Dr15Jones ! |
+db |
This pull request is fully signed and it will be integrated in one of the next master IBs after it passes the integration tests. This pull request will now be reviewed by the release team before it's merged. @mandrenguyen, @rappoccio, @antoniovilela, @sextonkennedy (and backports should be raised in the release meeting by the corresponding L2) |
+1 Size: This PR adds an extra 20KB to repository Comparison SummarySummary:
|
+1 |
PR description:
PR validation:
Code compiles. A simple job using a prototype alloc monitor showed reduced amount of memory held from event to event.
NOTE: this should just be a refactoring so the PR tests should show no differences. If there are differences than debugging will be necessary.