Home
last modified time | relevance | path

Searched refs:thunk_total_order_ (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/service/gpu/
Dthunk_schedule.cc58 thunk_total_order_.push_back(thunk.get()); in ThunkSchedule()
66 for (const Thunk* thunk : thunk_total_order_) { in ThunkSchedule()
87 thunk_total_order_.push_back(thunk.get()); in ThunkSchedule()
93 for (int i = 0; i < thunk_total_order_.size(); ++i) { in RemoveRedundantDependencyEdges()
94 InsertOrDie(&thunk_to_total_order, thunk_total_order_[i], i); in RemoveRedundantDependencyEdges()
119 for (const Thunk* dst : thunk_total_order_) { in RemoveRedundantDependencyEdges()
156 if (thunk_total_order_.empty()) { in ToString()
161 thunk_total_order_, [](const Thunk* a, const Thunk* b) { in ToString()
169 for (Thunk* thunk : thunk_total_order_) { in ToString()
Dthunk_schedule.h62 const std::vector<Thunk*>& TotalOrder() const { return thunk_total_order_; } in TotalOrder()
101 std::vector<Thunk*> thunk_total_order_; variable