8000 skipp some · pytorch/pytorch@d1d5ee9 · GitHub
[go: up one dir, main page]

Skip to content

Commit d1d5ee9

Browse files
committed
skipp some
1 parent fa7313e commit d1d5ee9

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

torch/testing/_internal/common_methods_invocations.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12622,7 +12622,10 @@ def error_inputs_mean(op_info, device, **kwargs):
1262212622
decorators=[
1262312623
skipCUDAIf(_get_torch_cuda_version() < (11, 4), "not available before CUDA 11.3.1"),
1262412624
skipCUDAIfNoCusolver, skipCUDAIfRocm, skipCPUIfNoLapack],
12625-
),
12625+
skips=(
12626+
DecorateInfo(unittest.skip("memory hog"), 'TestCommon', 'test_out_warning'),
12627+
DecorateInfo(unittest.skip("memory hog"), 'TestJit', 'test_variant_consistency_jit'),
12628+
)),
1262612629
OpInfo('linalg.lstsq',
1262712630
aten_name='linalg_lstsq',
1262812631
dtypes=floating_and_complex_types(),
@@ -12952,7 +12955,10 @@ def error_inputs_mean(op_info, device, **kwargs):
1295212955
supports_forward_ad=True,
1295312956
supports_fwgrad_bwgrad=True,
1295412957
sample_inputs_func=sample_inputs_linalg_lu,
12955-
decorators=[skipCUDAIfNoMagmaAndNoCusolver, skipCPUIfNoLapack]),
12958+
decorators=[skipCUDAIfNoMagmaAndNoCusolver, skipCPUIfNoLapack],
12959+
skips=(
12960+
DecorateInfo(unittest.skip("memory hog"), 'TestGradients', 'test_fn_fwgrad_bwgrad'),
12961+
)),
1295612962
OpInfo('lu_unpack',
1295712963
op=torch.lu_unpack,
1295812964
dtypes=floating_and_complex_types(),

0 commit comments

Comments
 (0)
0