(ones)
| 281 | # it receives will be [1], [[1]], [[[1]]], ... |
| 282 | @def_function.function(experimental_relax_shapes=True) |
| 283 | def foo(ones): |
| 284 | return bar(array_ops.shape(ones)) |
| 285 | |
| 286 | for rank in range(1, 6): |
| 287 | x_shape = self.evaluate(foo(array_ops.ones([1] * rank))) |
nothing calls this directly
no test coverage detected