(pfor_input)
| 1775 | |
| 1776 | @RegisterPFor("ExpandDims") |
| 1777 | def _convert_expanddims(pfor_input): |
| 1778 | t = pfor_input.stacked_input(0) |
| 1779 | dim = pfor_input.unstacked_input(1) |
| 1780 | dim += math_ops.cast(dim >= 0, dtypes.int32) |
| 1781 | return wrap(array_ops.expand_dims(t, axis=dim), True) |
| 1782 | |
| 1783 | |
| 1784 | @RegisterPForWithArgs("LowerBound", gen_array_ops.lower_bound) |
nothing calls this directly
no test coverage detected