(pfor_input)
| 1864 | |
| 1865 | @RegisterPFor("Slice") |
| 1866 | def _convert_slice(pfor_input): |
| 1867 | t = pfor_input.stacked_input(0) |
| 1868 | begin = pfor_input.unstacked_input(1) |
| 1869 | size = pfor_input.unstacked_input(2) |
| 1870 | begin = array_ops.concat([[0], begin], axis=0) |
| 1871 | size = array_ops.concat([[-1], size], axis=0) |
| 1872 | return wrap(array_ops.slice(t, begin, size), True) |
| 1873 | |
| 1874 | |
| 1875 | @RegisterPFor("Tile") |
nothing calls this directly
no test coverage detected