We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c9878a commit 9b233d4Copy full SHA for 9b233d4
test/test_models.py
@@ -682,6 +682,10 @@ def test_classification_model(model_fn, dev):
682
model_name = model_fn.__name__
683
if SKIP_BIG_MODEL and is_skippable(model_name, dev):
684
pytest.skip("Skipped to reduce memory usage. Set env var SKIP_BIG_MODEL=0 to enable test for this model")
685
+ if model_name == "vit_h_14" and dev == "cuda":
686
+ # TODO: investigate why this fail on CI. It doesn't fail on AWS cluster with CUDA 11.6
687
+ # (can't test with later versions ATM)
688
+ pytest.xfail("https://github.com/pytorch/vision/issues/7143")
689
kwargs = {**defaults, **_model_params.get(model_name, {})}
690
num_classes = kwargs.get("num_classes")
691
input_shape = kwargs.pop("input_shape")
0 commit comments