| 3062 | } |
| 3063 | |
| 3064 | XlaOp Le(const XlaOp lhs, const XlaOp rhs, |
| 3065 | absl::Span<const int64> broadcast_dimensions) { |
| 3066 | return Compare(lhs, rhs, broadcast_dimensions, ComparisonDirection::kLe); |
| 3067 | } |
| 3068 | |
| 3069 | XlaOp Lt(const XlaOp lhs, const XlaOp rhs, |
| 3070 | absl::Span<const int64> broadcast_dimensions) { |
no test coverage detected