(self)
| 334 | |
| 335 | @unittest.skipIf(not singa_api.USE_CUDA, 'CUDA is not enabled') |
| 336 | def test_batch_norm_gpu(self): |
| 337 | self._batch_norm_helper(gpu_dev) |
| 338 | |
| 339 | def _linear_helper(self, dev): |
| 340 | x = tensor.Tensor(shape=(2, 20), device=dev) |
nothing calls this directly
no test coverage detected