(self)
| 1329 | |
| 1330 | @unittest.skipIf(not singa_wrap.USE_CUDA, 'CUDA is not enabled') |
| 1331 | def test_unsqueeze_gpu(self): |
| 1332 | self._unsqueeze_helper(gpu_dev) |
| 1333 | |
| 1334 | def _Sqrt_helper(self, dev): |
| 1335 | X = np.array([0.1, 1.0, 0.4, 4.0, 0.9, |
nothing calls this directly
no test coverage detected