| 40 | |
| 41 | template <typename HloInstructionPtr> |
| 42 | typename DfsHloVisitorBase<HloInstructionPtr>::VisitState |
| 43 | DfsHloVisitorBase<HloInstructionPtr>::GetVisitState( |
| 44 | const HloInstruction& instruction) { |
| 45 | return GetVisitState(instruction.unique_id()); |
| 46 | } |
| 47 | |
| 48 | template <typename HloInstructionPtr> |
| 49 | void DfsHloVisitorBase<HloInstructionPtr>::SetVisiting( |
no test coverage detected