Home
last modified time | relevance | path

Searched refs:DfsHloVisitorBase (Results 1 – 7 of 7) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/service/
Ddfs_hlo_visitor.cc28 Status DfsHloVisitorBase<HloInstructionPtr>::HandleElementwiseUnary( in HandleElementwiseUnary()
35 Status DfsHloVisitorBase<HloInstructionPtr>::HandleElementwiseBinary( in HandleElementwiseBinary()
42 typename DfsHloVisitorBase<HloInstructionPtr>::VisitState
43 DfsHloVisitorBase<HloInstructionPtr>::GetVisitState( in GetVisitState()
49 void DfsHloVisitorBase<HloInstructionPtr>::SetVisiting( in SetVisiting()
57 void DfsHloVisitorBase<HloInstructionPtr>::SetVisited( in SetVisited()
65 Status DfsHloVisitorBase<HloInstructionPtr>::Preprocess(HloInstructionPtr) { in Preprocess()
70 Status DfsHloVisitorBase<HloInstructionPtr>::Postprocess(HloInstructionPtr) { in Postprocess()
75 template class DfsHloVisitorBase<HloInstruction*>; variable
76 template class DfsHloVisitorBase<const HloInstruction*>; variable
Ddfs_hlo_visitor.h60 class DfsHloVisitorBase {
68 DfsHloVisitorBase() {} in DfsHloVisitorBase() function
69 virtual ~DfsHloVisitorBase() {} in ~DfsHloVisitorBase()
347 TF_DISALLOW_COPY_AND_ASSIGN(DfsHloVisitorBase);
352 using DfsHloVisitor = DfsHloVisitorBase<HloInstruction*>;
353 using ConstDfsHloVisitor = DfsHloVisitorBase<const HloInstruction*>;
Dhlo_computation.h281 Status Accept(DfsHloVisitorBase<HloInstructionPtr>* visitor) const;
293 Status AcceptOrdered(DfsHloVisitorBase<HloInstructionPtr>* visitor,
Ddfs_hlo_visitor_with_default.h40 : public DfsHloVisitorBase<HloInstructionPtr> {
Dhlo_computation.cc649 DfsHloVisitorBase<HloInstructionPtr>* visitor) const { in Accept()
684 DfsHloVisitorBase<HloInstructionPtr>* visitor, in AcceptOrdered()
Dhlo_instruction.h647 Status Accept(DfsHloVisitorBase<HloInstructionPtr>* visitor,
683 Status Visit(DfsHloVisitorBase<HloInstructionPtr>* visitor);
Dhlo_instruction.cc2517 Status HloInstruction::Visit(DfsHloVisitorBase<HloInstructionPtr>* visitor) { in Visit()
2796 Status HloInstruction::Accept(DfsHloVisitorBase<HloInstructionPtr>* visitor, in Accept()