(self)
| 189 | |
| 190 | @unittest.skipIf(not singa_wrap.USE_CUDA, 'CUDA is not enabled') |
| 191 | def test_conv2d_same_pad_gpu(self): |
| 192 | self._conv_same_pad(gpu_dev, "SAME_LOWER", True) |
| 193 | self._conv_same_pad(gpu_dev, "SAME_UPPER", True) |
| 194 | |
| 195 | def test_conv1d_same_pad_cpu(self): |
| 196 | self._conv_same_pad(cpu_dev, "SAME_LOWER", False) |
nothing calls this directly
no test coverage detected