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 46f1697 commit 737af02Copy full SHA for 737af02
test/test_transforms_tensor.py
@@ -958,6 +958,17 @@ def test_random_apply(device):
958
)
959
@pytest.mark.parametrize("channels", [1, 3])
960
def test_gaussian_blur(device, channels, meth_kwargs):
961
+ if all(
962
+ [
963
+ device == "cuda",
964
+ channels == 1,
965
+ meth_kwargs["kernel_size"] in [23, [23]],
966
+ torch.version.cuda == "11.3",
967
+ sys.platform in ("win32", "cygwin"),
968
+ ]
969
+ ):
970
+ pytest.skip("Fails on Windows, see https://github.com/pytorch/vision/issues/5464")
971
+
972
tol = 1.0 + 1e-10
973
torch.manual_seed(12)
974
_test_class_op(
0 commit comments