-
Notifications
You must be signed in to change notification settings - Fork 26.3k
Make the data types of output and input consistenst for batchnorm #84410
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
Conversation
🔗 Helpful links
❌ 1 New FailuresAs of commit 7c849fbc1c (more details on the Dr. CI page): Expand to see more
🕵️ 1 new failure recognized by patternsThe following CI failures do not appear to be due to upstream breakages
|
|
@pytorchbot merge |
Merge failedReason: Approval needed from one of the following (Rule 'superuser'): Details for Dev Infra teamRaised by workflow job |
🔗 Helpful Links🧪 See artifacts and rendered test results at hud.pytorch.org/pr/84410
Note: Links to docs will display an error until the docs builds have been completed. ✅ No Failures, 4 PendingAs of commit 68f02d2: This comment was automatically generated by Dr. CI and updates every 15 minutes. |
ec7a9ff to
cd7ff8f
Compare
|
@frank-wei Could you please view this PR ? Thank you. |
|
/easycla As part of the transition to the PyTorch Foundation, this project now requires contributions be covered under the new CLA. See #85559 for additional details. This comment will trigger a new check of this PR. If you are already covered, you will simply see a new "EasyCLA" check that passes. If you are not covered, a bot will leave a new comment with a link to sign. |
|
@pytorchbot merge |
Merge failedReason: Approval needed from one of the following (Rule 'superuser'): Details for Dev Infra teamRaised by workflow job |
|
@malfet Could you please view this PR ? It will fix a crash issue. Thank you. |
malfet
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, would be nice to answer the question about explicit .cpu() calls
|
Also, please note that |
|
@malfet Thank you for your correction and kind help. May I know if this PR will be landed in pytorch 1.13 ? |
|
@pytorchbot merge |
Merge startedYour change will be merged once all checks pass (ETA 0-4 Hours). Learn more about merging in the wiki. Questions? Feedback? Please reach out to the PyTorch DevX Team |
|
Hey @CaoE. |
The model TTS will crash due to the issue:: when input of BN is not contiguous and the data type of input is different with that of parameters, BN will raise error
RuntimeError: !needs_dynamic_casting<func_t>::check(iter) INTERNAL ASSERT FAILED at "xxx/pytorch/aten/src/ATen/native/cpu/Loops.h":311, please report a bug to PyTorch.Make the data types of output and input consistenst for batchnorm to fix the issue.