Skip to content

Commit

Permalink
do not skip tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bmedishe committed Nov 27, 2023
1 parent cef800e commit 842331a
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions tests/cupyx_tests/test_cudnn.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand All @@ -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)
Expand Down Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit 842331a

Please sign in to comment.