OpInfo: Add DecorateInfo class similar to SkipInfo for decorators#50501
OpInfo: Add DecorateInfo class similar to SkipInfo for decorators#50501peterbell10 wants to merge 2 commits intopytorch:masterfrom
Conversation
💊 CI failures summary and remediationsAs of commit e09b14a (more details on the Dr. CI page):
🕵️ 1 new failure recognized by patternsThe following CI failures do not appear to be due to upstream breakages:
|
4b7c3ac to
ffa3eaf
Compare
Codecov Report
@@ Coverage Diff @@
## master #50501 +/- ##
==========================================
- Coverage 80.99% 80.65% -0.35%
==========================================
Files 1916 1913 -3
Lines 209552 208123 -1429
==========================================
- Hits 169736 167861 -1875
- Misses 39816 40262 +446 |
There was a problem hiding this comment.
Thank you for fixing this.
mruberry
left a comment
There was a problem hiding this comment.
This is a smart improvement, thanks @peterbell10!
The test failure is unrelated but this does need a rebase, though. Just ping me when it's ready.
ffa3eaf to
71d2ac0
Compare
71d2ac0 to
6a77ecf
Compare
|
@mruberry rebased and tests are all passing. |
facebook-github-bot
left a comment
There was a problem hiding this comment.
@mruberry has imported this pull request. If you are a Facebook employee, you can view this diff on Phabricator.
facebook-github-bot
left a comment
There was a problem hiding this comment.
@mruberry has imported this pull request. If you are a Facebook employee, you can view this diff on Phabricator.
…torch#50501) Summary: Follow up to pytorch#50435 I have confirmed this works by running ``` pytest test_ops.py -k test_fn_gradgrad_fft` ``` with normally and with `PYTORCH_TEST_WITH_SLOW=1 PYTORCH_TEST_SKIP_FAST=1`. In the first case all tests are skipped, in the second they all run as they should. Pull Request resolved: pytorch#50501 Reviewed By: ezyang Differential Revision: D25956416 Pulled By: mruberry fbshipit-source-id: c896a8cec5f19b8ffb9b168835f3743b6986dad7
Follow up to #50435
I have confirmed this works by running
with normally and with
PYTORCH_TEST_WITH_SLOW=1 PYTORCH_TEST_SKIP_FAST=1. In the first case all tests are skipped, in the second they all run as they should.