(self)
| 1693 | |
| 1694 | @unittest.skipIf(not singa_api.USE_CUDA, 'CUDA is not enabled') |
| 1695 | def test_reduceSum_gpu(self): |
| 1696 | self._reduceSum_helper(gpu_dev) |
| 1697 | |
| 1698 | def _reduceMean_helper(self, dev): |
| 1699 | X = np.random.randn(3, 4, 5).astype(np.float32) |
nothing calls this directly
no test coverage detected