-
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
[RECONSTRUCTION] [CLANG] Fix warnings reported by clang-16 #41616
[RECONSTRUCTION] [CLANG] Fix warnings reported by clang-16 #41616
Conversation
please test |
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-41616/35506
|
A new Pull Request was created by @aandvalenzuela (Andrea Valenzuela) for master. It involves the following packages:
@mandrenguyen, @clacaputo can you please review it and eventually sign? Thanks. cms-bot commands are listed here |
-1 Failed Tests: ClangBuild Clang BuildI found compilation warning while trying to compile with clang. Command used:
See details on the summary page. |
please test |
about (lack of) vectorization warnings in mkfit |
can this be moved to a separate issue? This PR doesn't touch mkFit. |
Yes @slava77, sure! It was just to gather some prior feedback, I will open a separate issue |
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-41616/35507
|
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-41616/35610
|
please test
|
Pull request #41616 was updated. @mandrenguyen, @clacaputo can you please check and sign again. |
+1 Summary: https://cmssdt.cern.ch/SDT/jenkins-artifacts/pull-request-integration/PR-348aff/32746/summary.html Comparison SummarySummary:
|
@cms-sw/reconstruction-l2 , can you please review this? |
@cms-sw/reconstruction-l2 , since nothing was removed and everything commented out I think that a formal approval from muon POG is not required any more. If they want to clean up their code further, it can be done in a follow up PR |
+1 |
This pull request is fully signed and it will be integrated in one of the next master IBs (tests are also fine). This pull request will now be reviewed by the release team before it's merged. @perrotta, @dpiparo, @rappoccio (and backports should be raised in the release meeting by the corresponding L2) |
+1 |
Hello,
This PR fixes set but unused warnings, unqualified calls and floating point comparisons from clang-16 in CLANG IBs.
Some reconstruction modules are also reporting warnings on
loop not vectorized
. For example, forRecoTracker/MkFitCore
:I have seen in older PRs that sometimes this has been fixed by using a pragma statement, others inlining the function (which I believe it won't work here, but correct me if I am wrong) and in other cases the original authors took care of rearranging the code. Any hints on what can we do in those cases?
Many thanks! :)
Andrea.