(self)
| 289 | |
| 290 | @unittest.skipIf(not singa_api.USE_CUDA, 'CUDA is not enabled') |
| 291 | def test_max_pool_gpu(self): |
| 292 | self._max_pool_helper(gpu_dev) |
| 293 | |
| 294 | def _batch_norm_helper(self, dev): |
| 295 | x = np.array([[[[-1, 0, 1]], [[2, 3, 4]]]]).astype(np.float32) |
nothing calls this directly
no test coverage detected