/* Copyright 2017 The TensorFlow Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ #ifndef TENSORFLOW_COMPILER_XLA_SERVICE_BUFFER_LIVENESS_H_ #define TENSORFLOW_COMPILER_XLA_SERVICE_BUFFER_LIVENESS_H_ #include #include #include #include "absl/container/flat_hash_set.h" #include "tensorflow/compiler/xla/service/hlo_instruction.h" #include "tensorflow/compiler/xla/service/hlo_module.h" #include "tensorflow/compiler/xla/service/hlo_ordering.h" #include "tensorflow/compiler/xla/service/tuple_points_to_analysis.h" #include "tensorflow/compiler/xla/statusor.h" #include "tensorflow/compiler/xla/types.h" #include "tensorflow/core/lib/core/status.h" namespace xla { // Class which computes liveness of the output buffers of HLOs and their // interference. class BufferLiveness { public: using Colorer = std::function; // Constructs a buffer liveness object for the given module assuming the given // HLO instruction ordering. static StatusOr> Run( const HloModule* module, std::unique_ptr hlo_ordering); // Returns true if the live range of the buffer containing the output of 'a' // may overlap with the live range of the buffer of 'b'. If instruction 'a' // interferes with instruction 'b' then they cannot share the same buffer. bool MayInterfere(const LogicalBuffer& a, const LogicalBuffer& b) const; // Returns true if the buffer for the given instruction may be live out of the // module. That is, the instruction's buffer may be included in the output of // the entry computation. bool MaybeLiveOut(const LogicalBuffer& buffer) const; // Returns the complete set of buffers that may be live out of the module. const PointsToSet::BufferSet& maybe_live_out_buffers() const { return maybe_live_out_buffers_; } // Returns the underlying points-to analysis used for this liveness analysis. const TuplePointsToAnalysis& points_to_analysis() const { return *points_to_analysis_; } // Returns the underlying hlo ordering used for this liveness analysis. const HloOrdering& hlo_ordering() const { return *hlo_ordering_; } const HloModule& module() const { return *module_; } string ToString() const; static Colorer DefaultColorer() { return [](const BufferLiveness& buffer_liveness) { for (LogicalBuffer::Id id = 0; id < buffer_liveness.points_to_analysis().num_logical_buffers(); id++) { auto& buffer = buffer_liveness.points_to_analysis().logical_buffer(id); buffer.set_color(LogicalBuffer::Color(0)); } return Status::OK(); }; } private: explicit BufferLiveness(const HloModule* module, std::unique_ptr hlo_ordering) : module_(module), hlo_ordering_(std::move(hlo_ordering)) {} // Perform buffer liveness analysis. This method must be called prior to // MayInterfere or MaybeLiveOut. Status Analyze(); // Returns true if the live range of the buffer of 'a' is strictly before the // live range of the buffer of 'b' (they do not overlap). bool live_range_strictly_before(const LogicalBuffer& a, const LogicalBuffer& b) const; const HloModule* module_; std::unique_ptr hlo_ordering_; // Set of LogicalBuffers which are aliased in the output of other // instructions. For example, a LogicalBuffer which is inserted into a tuple // is considered to be aliased and will be in this set. absl::flat_hash_set aliased_buffers_; // LogicalBuffers that may be live out of the entry computation. PointsToSet::BufferSet maybe_live_out_buffers_; std::unique_ptr points_to_analysis_; }; } // namespace xla #endif // TENSORFLOW_COMPILER_XLA_SERVICE_BUFFER_LIVENESS_H_