(self)
| 124 | |
| 125 | @unittest.skipIf(not singa_api.USE_CUDA, 'CUDA is not enabled') |
| 126 | def test_avg_pool_gpu(self): |
| 127 | self._avg_pool_helper(gpu_dev) |
| 128 | |
| 129 | def _softmax_helper(self, dev): |
| 130 | X = np.array([[-1, 0, 1]]).astype(np.float32) |
nothing calls this directly
no test coverage detected