(self)
| 481 | np.testing.assert_array_almost_equal(tensor.to_numpy(y), np_y) |
| 482 | |
| 483 | def test_4d_matmul_cpu(self): |
| 484 | self._4d_matmul_helper(cpu_dev) |
| 485 | |
| 486 | @unittest.skipIf(not singa_api.USE_CUDA, 'CUDA is not enabled') |
| 487 | def test_4d_matmul_gpu(self): |
nothing calls this directly
no test coverage detected