(self)
| 73 | |
| 74 | @unittest.skipIf(not singa_api.USE_CUDA, 'CUDA is not enabled') |
| 75 | def test_conv2d_gpu(self): |
| 76 | self._conv2d_helper(gpu_dev) |
| 77 | |
| 78 | def _relu_helper(self, dev): |
| 79 | X = np.array([0.8, -1.2, 3.3, -3.6, -0.5, |
nothing calls this directly
no test coverage detected