| 2248 | } |
| 2249 | |
| 2250 | HloComputation* HloInstruction::while_condition() const { |
| 2251 | CHECK_EQ(HloOpcode::kWhile, opcode_); |
| 2252 | return called_computations_[kConditionComputationIndex]; |
| 2253 | } |
| 2254 | |
| 2255 | HloComputation* HloInstruction::while_body() const { |
| 2256 | CHECK_EQ(HloOpcode::kWhile, opcode_); |
no outgoing calls