From 842331a89cdd1a760cb9bebf8c705617265b129d Mon Sep 17 00:00:00 2001 From: bmedishe Date: Mon, 27 Nov 2023 21:49:34 +0000 Subject: [PATCH] do not skip tests --- tests/cupyx_tests/test_cudnn.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tests/cupyx_tests/test_cudnn.py b/tests/cupyx_tests/test_cudnn.py index 84ef7b02071..0087a1c661b 100644 --- a/tests/cupyx_tests/test_cudnn.py +++ b/tests/cupyx_tests/test_cudnn.py @@ -40,7 +40,6 @@ 'dtype': [numpy.float32, numpy.float64], 'mode': modes, })) -@pytest.mark.skipif(not cudnn_enabled, reason='cuDNN is not available') class TestCudnnActivation: @pytest.fixture(autouse=True) @@ -60,7 +59,6 @@ def test_activation_backward(self): 'dtype': [numpy.float32, numpy.float64], 'mode': coef_modes, })) -@pytest.mark.skipif(not cudnn_enabled, reason='cuDNN is not available') class TestCudnnActivationCoef: @pytest.fixture(autouse=True) @@ -83,7 +81,6 @@ def test_activation_backward(self): 'ratio': [0.0, 0.1, 0.2, 0.5], 'seed': [0, 100] })) -@pytest.mark.skipif(not cudnn_enabled, reason='cuDNN is not available') class TestCudnnDropout: @pytest.fixture(autouse=True) @@ -136,7 +133,6 @@ def test_dropout_seed(self): 'bias': [True, False], 'layout': layouts, }))) -@pytest.mark.skipif(not cudnn_enabled, reason='cuDNN is not available') class TestConvolutionForward: @pytest.fixture(autouse=True) @@ -224,7 +220,6 @@ def test_call(self): 'auto_tune': [True, False], 'deterministic': [True, False], }))) -@pytest.mark.skipif(not cudnn_enabled, reason='cuDNN is not available') class TestConvolutionBackwardFilter: @pytest.fixture(autouse=True) @@ -303,7 +298,6 @@ def test_call(self): 'deterministic': [True, False], 'bias': [True, False], }))) -@pytest.mark.skipif(not cudnn_enabled, reason='cuDNN is not available') class TestConvolutionBackwardData: @pytest.fixture(autouse=True)