-
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
Try a second time if pop fails in ReusableObjectHolder #36813
Conversation
Experience has shown that for some builds, tbb::concurrent_queue try_pop appears to falsely fail. Adding a second attempt to try to decrease that frequency.
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-36813/27969
|
A new Pull Request was created by @Dr15Jones (Chris Jones) for master. It involves the following packages:
@cmsbuild, @smuzaffar, @Dr15Jones, @makortel can you please review it and eventually sign? Thanks. cms-bot commands are listed here |
@cmsbuild, please test |
@cmsbuild, please test for slc7_aarch64_gcc11 |
So I looked at the implementation of oneApi::tbb::concurrent_queue::try_pop and they make use of |
-1 Failed Tests: UnitTests RelVals The following merge commits were also included on top of IB + this PR after doing git cms-merge-topic:
You can see more details here: Unit TestsI found errors in the following unit tests: ---> test TestFWCoreIntegrationStandalone had ERRORS ---> test unitTestsGroup_1 had ERRORS ---> test unitTestsGroup_4 had ERRORS ---> test testFWCoreUtilities had ERRORS and more ... RelVals
|
On a sample of one test, this didn't seem to fully cure the "issue"
(whether it had an impact on the distribution of elements in the ReusableObjectHolder would require larger scale test) |
-1 Failed Tests: UnitTests The following merge commits were also included on top of IB + this PR after doing git cms-merge-topic:
You can see more details here: Unit TestsI found errors in the following unit tests: ---> test materialBudgetTrackerPlots had ERRORS Comparison SummarySummary:
|
-1 Per our discussion earlier, a different approach would be needed. |
PR description:
Experience has shown that for some builds, tbb::concurrent_queue try_pop appears to falsely fail. Adding a second attempt to try to decrease that frequency.
PR validation:
Code compiles and the related unit test passes.