| 3199 | } |
| 3200 | |
| 3201 | bool HloInstruction::IsElementwise() const { |
| 3202 | return IsElementwiseImpl(absl::nullopt); |
| 3203 | } |
| 3204 | |
| 3205 | bool HloInstruction::IsElementwiseOnOperand(int64 operand_idx) const { |
| 3206 | return IsElementwiseImpl(operand_idx); |
no outgoing calls