(self)
| 149 | |
| 150 | @unittest.skipIf(not singa_api.USE_CUDA, 'CUDA is not enabled') |
| 151 | def test_softmax_gpu(self): |
| 152 | self._softmax_helper(gpu_dev) |
| 153 | |
| 154 | def _sigmoid_helper(self, dev): |
| 155 | X = np.array([[-1, 0, 1]]).astype(np.float32) |
nothing calls this directly
no test coverage detected