(self)
| 264 | |
| 265 | @unittest.skipIf(not singa_api.USE_CUDA, 'CUDA is not enabled') |
| 266 | def test_matmul_gpu(self): |
| 267 | self._matmul_helper(gpu_dev) |
| 268 | |
| 269 | def _max_pool_helper(self, dev): |
| 270 | x = tensor.Tensor(shape=(2, 3, 4, 4), device=dev) |
nothing calls this directly
no test coverage detected