Conversation
💊 CI failures summary and remediationsAs of commit cc8a796 (more details on the Dr. CI page):
This comment was automatically generated by Dr. CI (expand for details).Follow this link to opt-out of these comments for your Pull Requests.Please report bugs/suggestions to the (internal) Dr. CI Users group. This comment has been revised 4 times. |
|
Would you elaborate on what's going on here, @zasdfgbnm? cc @peterbell10 It seems like this line should be preventing skips from becoming None? |
|
When I run with To reproduce the failure, you can do |
mruberry
left a comment
There was a problem hiding this comment.
Nice fix, thanks @zasdfgbnm.
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.
Hmm, slow test should be executed by |
|
Ah, I think I see this issue. The CI is running with @mruberry I'm thinking either extend the |
|
I could see either approach work. If SkipInfo can be extended in a natural way, like there's just a |
|
I'm leaning towards creating a Adding the If that sounds alright, I'll create a PR. |
|
Sounds good. |
…0501) Summary: Follow up to #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: #50501 Reviewed By: ezyang Differential Revision: D25956416 Pulled By: mruberry fbshipit-source-id: c896a8cec5f19b8ffb9b168835f3743b6986dad7
Summary:
The failure is:
```
______________________________________________________________________________________________________ TestCommonCUDA.test_variant_consistency_jit_fft_rfft_cuda_float64 _______________________________________________________________________________________________________
../.local/lib/python3.9/site-packages/torch/testing/_internal/common_utils.py:889: in wrapper
method(*args, **kwargs)
../.local/lib/python3.9/site-packages/torch/testing/_internal/common_utils.py:889: in wrapper
method(*args, **kwargs)
../.local/lib/python3.9/site-packages/torch/testing/_internal/common_device_type.py:267: in instantiated_test
if op is not None and op.should_skip(generic_cls.__name__, name,
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <torch.testing._internal.common_methods_invocations.SpectralFuncInfo object at 0x7f7375f9b550>, cls_name = 'TestCommon', test_name = 'test_variant_consistency_jit', device_type = 'cuda', dtype = torch.float64
def should_skip(self, cls_name, test_name, device_type, dtype):
> for si in self.skips:
E TypeError: 'NoneType' object is not iterable
../.local/lib/python3.9/site-packages/torch/testing/_internal/common_methods_invocations.py:186: TypeError
```
Pull Request resolved: pytorch#50435
Reviewed By: izdeby
Differential Revision: D25886650
Pulled By: mruberry
fbshipit-source-id: 722a45247dc79be86858306cd1b51b0a63df8b37
…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
The failure is: