-
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
[backport] DeepTau - Do not call TF inference with empty grid #44456
Conversation
A new Pull Request was created by @valsdav for CMSSW_14_0_X. It involves the following packages:
@cmsbuild, @Martin-Grunewald, @mandrenguyen, @mmusich, @jfernan2 can you please review it and eventually sign? Thanks. cms-bot commands are listed here |
cms-bot internal usage |
assign ml |
New categories assigned: ml @valsdav,@wpmccormack you have been requested to review this Pull request/Issue and eventually sign? Thanks |
please test |
+1 Summary: https://cmssdt.cern.ch/SDT/jenkins-artifacts/pull-request-integration/PR-dde31f/38246/summary.html Comparison SummarySummary:
|
+1 |
urgent Since the failure that is fixed here is affecting also the Prompt processing (as mentioned in https://cms-talk.web.cern.ch/t/update-t0-skim-config-for-2024-pp-collision/36794/5 ) we would like to have it in a new 14_0_X release as soon as possible. |
Pull request #44456 was updated. @cmsbuild, @jfernan2, @wpmccormack, @mandrenguyen, @Martin-Grunewald, @valsdav, @mmusich can you please check and sign again. |
-1 Failed Tests: RelVals-INPUT RelVals-INPUTComparison SummarySummary:
|
please test |
+1 Summary: https://cmssdt.cern.ch/SDT/jenkins-artifacts/pull-request-integration/PR-dde31f/38267/summary.html Comparison SummarySummary:
|
+hlt |
+ml |
+1 |
This pull request is fully signed and it will be integrated in one of the next CMSSW_14_0_X IBs (tests are also fine) and once validation in the development release cycle CMSSW_14_1_X is complete. This pull request will now be reviewed by the release team before it's merged. @rappoccio, @antoniovilela, @sextonkennedy (and backports should be raised in the release meeting by the corresponding L2) |
+1 |
PR description:
Fix DeepTau issue #44333.
Backport to 14_0_X of #44455 .
The number of
valid_grid_cells
here is 0 for some events and this is creating aTF::Tensor
with shape [0, 1, 1, N].When this input is passed to a TF model executed on a CPU without
AVX512F AVX512_VNNI
, the model is executed and returns an empty output without complaining. WhenAVX512F AVX512_VNNI
instructions are present, the TF executor complains.This PR avoids calling the TF inference if empty inputs are detected.
The grid should never be empty. The issue will be followed up with Tau experts (enter here issue number..)
PR validation:
Works on the issue reproducer from #44333 (comment)