| 1874 | } |
| 1875 | |
| 1876 | void HloInstruction::AppendOperand(HloInstruction* operand) { |
| 1877 | operands_.push_back(operand); |
| 1878 | operand->AddUser(this); |
| 1879 | } |
| 1880 | |
| 1881 | void HloInstruction::RemoveOperandsAtAscendingIndices( |
| 1882 | absl::Span<const int> ascending_indices) { |
no test coverage detected