(self)
| 712 | |
| 713 | @unittest.skipIf(not singa_wrap.USE_CUDA, 'CUDA is not enabled') |
| 714 | def test_LeakyRelu_gpu(self): |
| 715 | self._LeakyRelu_helper(gpu_dev) |
| 716 | |
| 717 | def _Relu_helper(self, dev): |
| 718 | X = np.array([0.8, -1.2, 3.3, -3.6, -0.5, |
nothing calls this directly
no test coverage detected