| 3047 | } |
| 3048 | |
| 3049 | XlaOp Ne(const XlaOp lhs, const XlaOp rhs, |
| 3050 | absl::Span<const int64> broadcast_dimensions) { |
| 3051 | return Compare(lhs, rhs, broadcast_dimensions, ComparisonDirection::kNe); |
| 3052 | } |
| 3053 | |
| 3054 | XlaOp Ge(const XlaOp lhs, const XlaOp rhs, |
| 3055 | absl::Span<const int64> broadcast_dimensions) { |
no test coverage detected