Skip to content

Commit

Permalink
Merge a055c40 into 6cfd713
Browse files Browse the repository at this point in the history
  • Loading branch information
kmaehashi committed Mar 19, 2018
2 parents 6cfd713 + a055c40 commit 5a3adf7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/cupy_tests/test_cudnn.py
Expand Up @@ -127,6 +127,7 @@ def test_dropout_seed(self):
'auto_tune': [True, False],
'bias': [True, False],
})))
@unittest.skipUnless(cudnn_enabled, 'cuDNN is not available')
class TestConvolutionForward(unittest.TestCase):

def setUp(self):
Expand Down Expand Up @@ -191,6 +192,7 @@ def test_call(self):
'auto_tune': [True, False],
'deterministic': [True, False],
})))
@unittest.skipUnless(cudnn_enabled, 'cuDNN is not available')
class TestConvolutionBackwardFilter(unittest.TestCase):

def setUp(self):
Expand Down Expand Up @@ -258,6 +260,7 @@ def test_call(self):
'deterministic': [True, False],
'bias': [True, False],
})))
@unittest.skipUnless(cudnn_enabled, 'cuDNN is not available')
class TestConvolutionBackwardData(unittest.TestCase):

def setUp(self):
Expand Down

0 comments on commit 5a3adf7

Please sign in to comment.