Skip to content

Commit

Permalink
Skip test_nvfuser_extremal_values for native_batch_norm (pytorch#86897)
Browse files Browse the repository at this point in the history
New tests were introduced with pytorch@68a6113.
This PR explicitly skips the problematic tests.
Fixes pytorch#86176
Fixes pytorch#86177
Fixes pytorch#86178
Fixes pytorch#86179
Pull Request resolved: pytorch#86897
Approved by: https://github.com/soulitzer
  • Loading branch information
IvanYashchuk authored and pytorchmergebot committed Oct 13, 2022
1 parent 2ce6150 commit dbdfb8d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions torch/testing/_internal/common_methods_invocations.py
Original file line number Diff line number Diff line change
Expand Up @@ -10383,6 +10383,9 @@ def reference_flatten(input, start_dim=0, end_dim=-1):
DecorateInfo(unittest.skip("Skipped!"), 'TestFakeTensor', 'test_fake'),
DecorateInfo(toleranceOverride({torch.float32: tol(atol=5e-5, rtol=5e-5)}),
"TestCompositeCompliance", "test_forward_ad"),
# Extremal value issue on aten::native_batch_norm, which returns 'nan' for mean on 'inf' inputs
# possibly because of the welford implementation.
DecorateInfo(unittest.skip("Skipped!"), 'TestCudaFuserOpInfo', 'test_nvfuser_extremal_values'),
)
),
OpInfo('nn.functional.cosine_similarity',
Expand Down

0 comments on commit dbdfb8d

Please sign in to comment.