Home
last modified time | relevance | path

Searched refs:thunks_ (Results 1 – 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/service/gpu/
Dsequential_thunk.cc29 : Thunk(Kind::kSequential, thunk_info), thunks_(std::move(thunks)) {} in SequentialThunk()
33 for (auto& thunk : thunks_) { in Initialize()
42 for (const auto& thunk : thunks_) { in ExecuteOnStream()
Dthunk_schedule.cc54 : thunks_(std::move(thunks)), in ThunkSchedule()
57 for (auto& thunk : *thunks_) { in ThunkSchedule()
62 for (const auto& thunk : *thunks_) { in ThunkSchedule()
85 : thunks_(std::move(thunks)) { in ThunkSchedule()
86 for (auto& thunk : *thunks_) { in ThunkSchedule()
Dsequential_thunk.h40 const std::vector<std::unique_ptr<Thunk>>& thunks() const { return thunks_; } in thunks()
48 std::vector<std::unique_ptr<Thunk>> thunks_;
Dthunk_schedule.h100 std::unique_ptr<ThunkSequence> thunks_; variable