(pfor_input)
| 1795 | |
| 1796 | @RegisterPFor("MatrixBandPart") |
| 1797 | def _convert_matrix_band_part(pfor_input): |
| 1798 | t = pfor_input.stacked_input(0) |
| 1799 | num_lower = pfor_input.unstacked_input(1) |
| 1800 | num_upper = pfor_input.unstacked_input(2) |
| 1801 | return wrap(array_ops.matrix_band_part( |
| 1802 | t, num_lower=num_lower, num_upper=num_upper), True) |
| 1803 | |
| 1804 | |
| 1805 | @RegisterPFor("MatrixSetDiag") |
nothing calls this directly
no test coverage detected