(self)
| 182 | np.testing.assert_array_almost_equal(tensor.to_numpy(y), y_t, 3) |
| 183 | |
| 184 | def test_matmul_high_dim_cpu(self): |
| 185 | self.matmul_high_dim_helper(cpu_dev) |
| 186 | |
| 187 | @unittest.skipIf(not singa_api.USE_CUDA, 'CUDA is not enabled') |
| 188 | def test_matmul_high_dim_gpu(self): |
nothing calls this directly
no test coverage detected