-
Notifications
You must be signed in to change notification settings - Fork 26.3k
[JIT] call super().setUp() in test_jit_fuser_te.py #73762
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
TestCase.setUp() controls @slowtest behavior, so calling super().setUp() will prevent fast tests from running in the slow test CI jobs. [ghstack-poisoned]
CI Flow Status⚛️ CI FlowRuleset - Version:
|
🔗 Helpful links
💊 CI failures summary and remediationsAs of commit e6c67d8 (more details on the Dr. CI page): 💚 💚 Looks good so far! There are no failures yet. 💚 💚 This comment was automatically generated by Dr. CI (expand for details).Please report bugs/suggestions to the (internal) Dr. CI Users group. |
ZolotukhinM
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!
|
@davidberard98 has imported this pull request. If you are a Facebook employee, you can view this diff on Phabricator. |
TestCase.setUp() controls slowTest behavior, so calling super().setUp() will prevent fast tests from running in the slow test CI jobs. example: https://github.com/pytorch/pytorch/runs/5413135014?check_suite_focus=true: despite PYTORCH_TEST_SKIP_FAST=1, TestTEFuserStatic tests are still running Differential Revision: [D34628769](https://our.internmc.facebook.com/intern/diff/D34628769) [ghstack-poisoned]
|
@davidberard98 has imported this pull request. If you are a Facebook employee, you can view this diff on Phabricator. |
TestCase.setUp() controls slowTest behavior, so calling super().setUp() will prevent fast tests from running in the slow test CI jobs. example: https://github.com/pytorch/pytorch/runs/5413135014?check_suite_focus=true: despite PYTORCH_TEST_SKIP_FAST=1, TestTEFuserStatic tests are still running Differential Revision: [D34628769](https://our.internmc.facebook.com/intern/diff/D34628769) [ghstack-poisoned]
TestCase.setUp() controls slowTest behavior, so calling super().setUp() will prevent fast tests from running in the slow test CI jobs. example: https://github.com/pytorch/pytorch/runs/5413135014?check_suite_focus=true: despite PYTORCH_TEST_SKIP_FAST=1, TestTEFuserStatic tests are still running Differential Revision: [D34628769](https://our.internmc.facebook.com/intern/diff/D34628769) [ghstack-poisoned]
|
@davidberard98 has imported this pull request. If you are a Facebook employee, you can view this diff on Phabricator. |
TestCase.setUp() controls slowTest behavior, so calling super().setUp() will prevent fast tests from running in the slow test CI jobs. example: https://github.com/pytorch/pytorch/runs/5413135014?check_suite_focus=true: despite PYTORCH_TEST_SKIP_FAST=1, TestTEFuserStatic tests are still running Differential Revision: [D34628769](https://our.internmc.facebook.com/intern/diff/D34628769) [ghstack-poisoned]
|
@davidberard98 has imported this pull request. If you are a Facebook employee, you can view this diff on Phabricator. |
|
@ZolotukhinM turns out there were a few failures due to self.setHooks() and self.clearHooks() (which are called in JitTestCase.setUp()) - can you take a quick look to make sure the changes to make the tests pass are fine? |
Summary: Pull Request resolved: #73762 TestCase.setUp() controls slowTest behavior, so calling super().setUp() will prevent fast tests from running in the slow test CI jobs. example: https://github.com/pytorch/pytorch/runs/5413135014?check_suite_focus=true: despite PYTORCH_TEST_SKIP_FAST=1, TestTEFuserStatic tests are still running Test Plan: Imported from OSS Reviewed By: mruberry Differential Revision: D34628769 Pulled By: davidberard98 fbshipit-source-id: 84311ec1db2ac60fcafb7b77f377e9ae2ef792e3
Same as #73762. This will make these tests obey PYTORCH_TEST_WITH_SLOW and PYTORCH_TEST_SKIP_FAST [ghstack-poisoned]
… test_tensorexpr.py" Same as #73762. This will make these tests obey PYTORCH_TEST_WITH_SLOW and PYTORCH_TEST_SKIP_FAST Differential Revision: [D35036771](https://our.internmc.facebook.com/intern/diff/D35036771) [ghstack-poisoned]
….py" Same as #73762. This will make these tests obey PYTORCH_TEST_WITH_SLOW and PYTORCH_TEST_SKIP_FAST Differential Revision: [D35036771](https://our.internmc.facebook.com/intern/diff/D35036771) [ghstack-poisoned]
Summary: Pull Request resolved: #74504 Same as #73762. This will make these tests obey PYTORCH_TEST_WITH_SLOW and PYTORCH_TEST_SKIP_FAST Test Plan: Imported from OSS Reviewed By: ZolotukhinM Differential Revision: D35036771 Pulled By: davidberard98 fbshipit-source-id: a456c109cda365839cda56758ca4d6873e9e159c
Summary: Pull Request resolved: #74504 Same as #73762. This will make these tests obey PYTORCH_TEST_WITH_SLOW and PYTORCH_TEST_SKIP_FAST Test Plan: Imported from OSS Reviewed By: ZolotukhinM Differential Revision: D35036771 Pulled By: davidberard98 fbshipit-source-id: a456c109cda365839cda56758ca4d6873e9e159c (cherry picked from commit eeb70f5)
Summary: Pull Request resolved: #74504 Same as #73762. This will make these tests obey PYTORCH_TEST_WITH_SLOW and PYTORCH_TEST_SKIP_FAST Test Plan: Imported from OSS Reviewed By: ZolotukhinM Differential Revision: D35036771 Pulled By: davidberard98 fbshipit-source-id: a456c109cda365839cda56758ca4d6873e9e159c (cherry picked from commit eeb70f5)
Stack from ghstack:
TestCase.setUp() controls @slowtest behavior, so calling super().setUp() will prevent fast tests from running in the slow test CI jobs.
example: https://github.com/pytorch/pytorch/runs/5413135014?check_suite_focus=true: despite PYTORCH_TEST_SKIP_FAST=1, TestTEFuserStatic tests are still running
Differential Revision: D34628769