-
Notifications
You must be signed in to change notification settings - Fork 4.3k
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
edmCheckMultithreading: check for non multithreading-compliant modules #11241
edmCheckMultithreading: check for non multithreading-compliant modules #11241
Conversation
Check if the modules used by the CONFIG python file are `legacy`, `global`, `stream` or `one` modules, and if they implement the `fillDescriptions()` method.
@Martin-Grunewald , @perrotta , here is the script to check if any modules used by a CMSSW python configuration are multithreading-friendly or not. |
A new Pull Request was created by @fwyzard (Andrea Bocci) for CMSSW_7_4_X. edmCheckMultithreading: check for non multithreading-compliant modules It involves the following packages: FWCore/Utilities @cmsbuild, @smuzaffar, @Dr15Jones can you please review it and eventually sign? Thanks. |
Great, but what is the difference to CMSSW/HLTrigger/Tools/scripts/cmsCheckMultithreading ? |
please test |
though it just adds a new script, so it's very unlikely to break anything... |
The tests are being triggered in jenkins. |
That's something I forgot putting there... and it's likely an older version, which was breaking when looking for the package where each module is defined. And the new one has colours, too :-) Anyway, no, it's not automatically run, it's something we should add to hltIntegrationTest, but I would do that only after this PR is merged. |
Why was a backport needed? |
because HLT will stay with CMSSW 7.4.x for the rest of the year (at least for pp collisions), and I would like to add this to the standard checks that we request from the developers |
+1 |
This pull request is fully signed and it will be integrated in one of the next CMSSW_7_4_X IBs once checked with relvals in the development release cycle of CMSSW (tests are also fine). This pull request requires discussion in the ORP meeting before it's merged. @davidlange6, @Degano, @smuzaffar |
+1 |
edmCheckMultithreading: check for non multithreading-compliant modules
Check if the modules used by the CONFIG python file are
legacy
,global
,stream
orone
modules, and if they implement thefillDescriptions()
method.