-
Notifications
You must be signed in to change notification settings - Fork 102
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
Add decomposition for aten.native_batch_norm_backward
op
#675
base: main
Are you sure you want to change the base?
Add decomposition for aten.native_batch_norm_backward
op
#675
Conversation
Hi @Shukla-Gaurav! Thank you for your pull request and welcome to our community. Action RequiredIn order to merge any pull request (code, docs, etc.), we require contributors to sign our Contributor License Agreement, and we don't seem to have one on file for you. ProcessIn order for us to review and merge your suggested changes, please sign at https://code.facebook.com/cla. If you are contributing on behalf of someone else (eg your employer), the individual CLA may not be sufficient and your employer may need to sign the corporate CLA. Once the CLA is signed, our tooling will perform checks and validations. Afterwards, the pull request will be tagged with If you have received this in error or have any questions, please contact us at [email protected]. Thanks! |
Thank you for signing our Contributor License Agreement. We can now accept your code for this (and any) Meta Open Source project. Thanks! |
I think there are still some tests failing. For example, I don't believe To run the tests, run
and
|
5d06c10
to
cbeaf7a
Compare
@Chillee 'pytest test/test_ops.py::TestDecompositionOpInfoCPU -k batch_norm` is always passing for me locally.
Am I doing something wrong? |
@Shukla-Gaurav Do you mean that it always passes, regardless of whether your decomposition is correct? Or are you asking why the decompositions are passing even though the CI fails? If it's the second one, then there's some failures that are unrelated to you :) |
This commit adds decomposition for the `aten.native_batch_norm_backward` op. Signed-Off-by: Gaurav Shukla <[email protected]>
cbeaf7a
to
bbb2eac
Compare
@Shukla-Gaurav btw, is this mergeable? |
@Chillee Apologies for the delay. I will rebase and push. Thanks! |
@Chillee It looks like all the decompositions has been moved/removed? |
@Shukla-Gaurav Yes, can you re-open this PR on upstream PyTorch? |
Sure, will do that :) |
This commit adds decomposition for the
aten.native_batch_norm_backward
op.
Signed-Off-by: Gaurav Shukla [email protected]