(x_shape)
| 274 | # receives will be [1], [2], [3], ... |
| 275 | @def_function.function(experimental_relax_shapes=True) |
| 276 | def bar(x_shape): |
| 277 | got_shape[0] = x_shape._shape_tuple() |
| 278 | return x_shape |
| 279 | |
| 280 | # The outer function will not go through shape relaxation because the shapes |
| 281 | # it receives will be [1], [[1]], [[[1]]], ... |
nothing calls this directly
no test coverage detected