(pfor_input)
| 1748 | |
| 1749 | @RegisterPFor("Reshape") |
| 1750 | def _convert_reshape(pfor_input): |
| 1751 | t = pfor_input.stacked_input(0) |
| 1752 | shape = pfor_input.unstacked_input(1) |
| 1753 | new_shape = array_ops.concat([pfor_input.pfor.loop_len_vector, shape], axis=0) |
| 1754 | return wrap(array_ops.reshape(t, new_shape), True) |
| 1755 | |
| 1756 | |
| 1757 | @RegisterPFor("BroadcastTo") |
nothing calls this directly
no test coverage detected