You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: recipe/meta.yaml
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -434,6 +434,7 @@ outputs:
434
434
435
435
{% set skips = "(TestTorch and test_print)" %}
436
436
# minor tolerance violations
437
+
{% set skips = skips ~ " or test_1_sized_with_0_strided_cpu_float32" %} # [osx]
437
438
{% set skips = skips ~ " or test_batchnorm_nhwc_cpu" %} # [unix]
438
439
# timeouts and failures on aarch, see https://github.com/conda-forge/pytorch-cpu-feedstock/pull/298#issuecomment-2555888508
439
440
{% set skips = skips ~ " or test_pynode_destruction_deadlock" %} # [aarch64]
@@ -463,6 +464,10 @@ outputs:
463
464
# non-MKL problems
464
465
{% set skips = skips ~ " or test_cross_entropy_loss_2d_out_of_bounds_class_index_cuda" %} # [linux and blas_impl != "mkl" and cuda_compiler_version != "None"]
465
466
{% set skips = skips ~ " or test_cublas_config_nondeterministic_alert_cuda " %} # [linux and blas_impl != "mkl" and cuda_compiler_version != "None"]
467
+
# these tests are failing with low -n values
468
+
{% set skips = skips ~ " or test_base_does_not_require_grad_mode_nothing" %}
469
+
{% set skips = skips ~ " or test_base_does_not_require_grad_mode_warn" %}
470
+
{% set skips = skips ~ " or test_composite_registered_to_cpu_mode_nothing" %}
466
471
# these tests are failing on windows
467
472
{% set skips = skips ~ " or (TestNN and test_Conv1d_dilated)" %} # [win]
468
473
{% set skips = skips ~ " or (TestNN and test_Conv1d_pad_same_dilated)" %} # [win]
0 commit comments