(pfor_input)
| 2401 | |
| 2402 | @RegisterPFor("ApproximateEqual") |
| 2403 | def _convert_approximate_equal(pfor_input): |
| 2404 | pfor_input.expanddim_inputs_for_broadcast() |
| 2405 | x = pfor_input.input(0)[0] |
| 2406 | y = pfor_input.input(1)[0] |
| 2407 | tolerance = pfor_input.get_attr("tolerance") |
| 2408 | return wrap(math_ops.approximate_equal(x, y, tolerance=tolerance), True) |
| 2409 | |
| 2410 | |
| 2411 | @RegisterPFor("Shape") |
nothing calls this directly
no test coverage detected