(self)
| 360 | |
| 361 | @unittest.skipIf(not singa_api.USE_CUDA, 'CUDA is not enabled') |
| 362 | def test_linear_gpu(self): |
| 363 | self._linear_helper(gpu_dev) |
| 364 | |
| 365 | def _gemm_helper(self, dev): |
| 366 | A = np.random.randn(2, 3).astype(np.float32) |
nothing calls this directly
no test coverage detected