(x, y)
| 963 | return min(x, y) |
| 964 | |
| 965 | def equal_(x, y): |
| 966 | if _is_tensor(x) or _is_tensor(y): |
| 967 | return math_ops.equal(x, y) |
| 968 | else: |
| 969 | return x == y |
| 970 | |
| 971 | _, height, width, _ = _ImageDimensions(image, rank=4) |
| 972 | width_diff = target_width - width |
no test coverage detected