-
Notifications
You must be signed in to change notification settings - Fork 559
Lower LogSigmoid, LogSigmoidBackward, Elu, and EluBackward #3539
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
|
Unit tests failing: Seems related to this PR, looking into it. |
|
This is a bit odd, all these unit tests are succeeding locally. |
|
can you do a full cpp test run using https://github.com/pytorch/xla/blob/master/test/cpp/run_tests.sh (./test/cpp/run_tests.sh) should work |
Thanks! Doing that enabled me to reproduce the failures locally. I'm a bit confused here, according to https://github.com/pytorch/xla/blob/master/xla_native_functions.yaml, we don't lower |
|
seems like |
8fd5fdc to
ed9f8a3
Compare
|
Seemingly unrelated tests failing: Looking into it. |
|
You can rerun the test, upstream pr should be reverted. |
|
@JackCaoG, this should be ready for a quick review now. Thanks! |
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.
Thanks!
- `SgnOp` and `SignOp`
- Full codegen migration: #3577
- Mistakenly re-introduced: #3572
- `LogSigmoid`
- Introduced: #3539
- Full codegen migration: #3743
- `SiLU`
- Introduced: #2721
- Full codegen migration: #3780
- `SiLUBackward`
- Introduced: #3195
- Full codegen migration: #3780
- `SeLU`
- Introduced: #3547
- Full codegen migration: #3780
- `Sigmoid`
- Introduced: 6a73deb (no PR record)
- Full codegen migration: #6342
Lower LogSigmoid, LogSigmoidBackward, Elu, and EluBackward
As part of #3527, lowering existing ops that rely on IR level computation and removing the use of
ScopePusher.Testing unit tests succeeded locally.