8000 Skip __rmatmul__ test_unsupported_dtypes test for bfloat16 input · pytorch/pytorch@41af3ca · GitHub
[go: up one dir, main page]

Skip to content

Commit 41af3ca

Browse files
committed
Skip __rmatmul__ test_unsupported_dtypes test for bfloat16 input
1 parent <
8000
a class="color-fg-default Link--inTextBlock prc-Link-Link-85e08" data-hotkey="p" data-hovercard-url="/pytorch/pytorch/commit/5b57b0ad5a0fbc7fc55ed07bdb924d7173a64e53/hovercard" href="/pytorch/pytorch/commit/5b57b0ad5a0fbc7fc55ed07bdb924d7173a64e53" data-discover="true">5b57b0a commit 41af3ca

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

torch/testing/_internal/common_methods_invocations.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5309,7 +5309,10 @@ def gradcheck_wrapper_triangular_input(op, input, *args, upper=False, **kwargs):
53095309
SkipInfo('TestCommon', 'test_variant_consistency_jit',),
53105310
# https://github.com/pytorch/pytorch/issues/55755
53115311
6826 SkipInfo('TestOpInfo', 'test_unsupported_dtypes',
5312-
device_type='cpu', dtypes=(torch.float16,)),)),
5312+
device_type='cpu', dtypes=(torch.float16,)),
5313+
# https://github.com/pytorch/pytorch/pull/57934#issuecomment-840091579
5314+
SkipInfo('TestOpInfo', 'test_unsupported_dtypes',
5315+
device_type='cuda', dtypes=(torch.bfloat16,)),)),
53135316
OpInfo('__rpow__',
53145317
op=torch.Tensor.__rpow__,
53155318
dtypes=all_types_and_complex_and(torch.bfloat16, torch.half, torch.bool),

0 commit comments

Comments
 (0)
0