static */
| 929 | } |
| 930 | |
| 931 | /* static */ StatusOr<Shape> ShapeInference::InferBinaryOpShape( |
| 932 | HloOpcode opcode, const HloInstruction* lhs, const HloInstruction* rhs) { |
| 933 | return InferBinaryOpShape(opcode, lhs->shape(), rhs->shape(), |
| 934 | /*broadcast_dimensions=*/{}); |
| 935 | } |
| 936 | |
| 937 | /* static */ StatusOr<Shape> ShapeInference::InferBinaryOpShape( |
| 938 | HloOpcode opcode, const Shape& lhs, const Shape& rhs, |
nothing calls this directly
no test coverage detected