(pfor_input)
| 2391 | |
| 2392 | @RegisterPFor("NotEqual") |
| 2393 | def _convert_not_equal(pfor_input): |
| 2394 | pfor_input.expanddim_inputs_for_broadcast() |
| 2395 | x = pfor_input.input(0)[0] |
| 2396 | y = pfor_input.input(1)[0] |
| 2397 | incompatible_shape_error = pfor_input.get_attr("incompatible_shape_error") |
| 2398 | assert incompatible_shape_error |
| 2399 | return wrap(math_ops.not_equal(x, y), True) |
| 2400 | |
| 2401 | |
| 2402 | @RegisterPFor("ApproximateEqual") |
nothing calls this directly
no test coverage detected