(self)
| 233 | |
| 234 | @unittest.skipIf(not singa_api.USE_CUDA, 'CUDA is not enabled') |
| 235 | def test_concat_gpu(self): |
| 236 | self._concat_helper(gpu_dev) |
| 237 | |
| 238 | def _matmul_helper(self, dev): |
| 239 | X1 = np.random.randn(4, 5).astype(np.float32) |
nothing calls this directly
no test coverage detected