(pfor_input)
| 2518 | |
| 2519 | @RegisterPFor("SelectV2") |
| 2520 | def _convert_selectv2(pfor_input): |
| 2521 | pfor_input.expanddim_inputs_for_broadcast() |
| 2522 | cond = pfor_input.input(0)[0] |
| 2523 | t = pfor_input.input(1)[0] |
| 2524 | e = pfor_input.input(2)[0] |
| 2525 | out = array_ops.where_v2(cond, t, e) |
| 2526 | return wrap(out, True) |
| 2527 | |
| 2528 | |
| 2529 | # random_ops |
nothing calls this directly
no test coverage detected