(self)
| 128 | |
| 129 | @test_util.run_deprecated_v1 |
| 130 | def test6D(self): |
| 131 | for dtype in self.valid_dtypes: |
| 132 | x = np.arange(1, 145).reshape([2, 2, 3, 3, 2, 2]).astype(dtype) |
| 133 | for axis in range(-6, 6, 3): |
| 134 | self._compareAll(x, axis) |
| 135 | |
| 136 | @test_util.run_deprecated_v1 |
| 137 | @test_util.disable_xla("b/123860949") # The computation is constant folded |
nothing calls this directly
no test coverage detected