1 /* Copyright 2017 The TensorFlow Authors. All Rights Reserved. 2 3 Licensed under the Apache License, Version 2.0 (the "License"); 4 you may not use this file except in compliance with the License. 5 You may obtain a copy of the License at 6 7 http://www.apache.org/licenses/LICENSE-2.0 8 9 Unless required by applicable law or agreed to in writing, software 10 distributed under the License is distributed on an "AS IS" BASIS, 11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 See the License for the specific language governing permissions and 13 limitations under the License. 14 ==============================================================================*/ 15 16 #ifndef TENSORFLOW_COMPILER_XLA_SERVICE_GPU_WHILE_THUNK_H_ 17 #define TENSORFLOW_COMPILER_XLA_SERVICE_GPU_WHILE_THUNK_H_ 18 19 #include <vector> 20 21 #include "tensorflow/compiler/xla/service/gpu/buffer_allocations.h" 22 #include "tensorflow/compiler/xla/service/gpu/sequential_thunk.h" 23 #include "tensorflow/compiler/xla/service/gpu/thunk.h" 24 #include "tensorflow/compiler/xla/service/hlo_instruction.h" 25 #include "tensorflow/core/platform/stream_executor_no_cuda.h" 26 27 namespace xla { 28 namespace gpu { 29 30 // WhileThunk implements the while instruction on GPU by invoking a thunk 31 // sequence for the while 'condition' computation, and (conditionally) another 32 // thunk sequence for the while 'body' computation. WhileThunk assumes that 33 // buffers for the following set of while-related instructions share the same 34 // allocation: 35 // init, condition.parameter, body.parameter, body.root, while.result 36 // WhileThunk synchronizes the stream to test the result of the 'condition' 37 // computation. 38 class WhileThunk : public Thunk { 39 public: 40 // Constructs a WhileThunk to compute while instruction 'hlo'. 41 WhileThunk(ThunkInfo thunk_info, 42 const BufferAllocation::Slice& condition_result_buffer_index, 43 std::unique_ptr<ThunkSequence> condition_thunk_sequence, 44 std::unique_ptr<ThunkSequence> body_thunk_sequence); 45 WhileThunk(const WhileThunk&) = delete; 46 WhileThunk& operator=(const WhileThunk&) = delete; 47 48 Status Initialize(const GpuExecutable& executable, 49 se::StreamExecutor* executor) override; 50 Status ExecuteOnStream(const ExecuteParams& params) override; 51 52 private: 53 const BufferAllocation::Slice condition_result_buffer_index_; 54 std::unique_ptr<SequentialThunk> condition_thunk_sequence_; 55 std::unique_ptr<SequentialThunk> body_thunk_sequence_; 56 }; 57 58 } // namespace gpu 59 } // namespace xla 60 61 #endif // TENSORFLOW_COMPILER_XLA_SERVICE_GPU_WHILE_THUNK_H_ 62