/* 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. ==============================================================================*/ // Defines the data returned by the XLA buffer assignment packages. #include "tensorflow/compiler/xla/service/buffer_liveness.h" #include #include #include "absl/strings/str_format.h" #include "absl/strings/str_join.h" #include "tensorflow/compiler/xla/service/hlo_computation.h" #include "tensorflow/compiler/xla/service/logical_buffer.h" #include "tensorflow/compiler/xla/shape_util.h" #include "tensorflow/compiler/xla/status_macros.h" #include "tensorflow/compiler/xla/statusor.h" #include "tensorflow/compiler/xla/types.h" #include "tensorflow/compiler/xla/util.h" #include "tensorflow/core/lib/core/errors.h" #include "tensorflow/core/platform/logging.h" namespace xla { /* static */ StatusOr> BufferLiveness::Run( const HloModule* module, std::unique_ptr hlo_ordering) { std::unique_ptr liveness( new BufferLiveness(module, std::move(hlo_ordering))); TF_RETURN_IF_ERROR(liveness->Analyze()); return std::move(liveness); } Status BufferLiveness::Analyze() { TF_ASSIGN_OR_RETURN(points_to_analysis_, TuplePointsToAnalysis::Run(module_)); for (auto* computation : module_->computations()) { if (computation->IsFusionComputation()) { continue; } // Gather all instructions whose buffers might alias other instructions into // the set aliased_buffers_. This includes those contained as a tuple // element in other instruction's output. for (const auto& instruction : computation->instructions()) { for (const LogicalBuffer* aliased_buffer : points_to_analysis_->GetPointsToSet(instruction) .CreateFlattenedSet()) { if (aliased_buffer->instruction() != instruction) { aliased_buffers_.insert(aliased_buffer); } } } if (computation == module_->entry_computation()) { const HloInstruction* root = computation->root_instruction(); maybe_live_out_buffers_ = points_to_analysis_->GetPointsToSet(root).CreateFlattenedSet(); } } XLA_VLOG_LINES(3, ToString()); return Status::OK(); } string BufferLiveness::ToString() const { std::vector pieces; pieces.push_back( absl::StrFormat("BufferLiveness(module=%s):", module_->name())); pieces.push_back("HloOrdering:"); pieces.push_back(hlo_ordering_->ToString()); pieces.push_back("Aliased buffers:"); for (const LogicalBuffer* buffer : aliased_buffers_) { pieces.push_back(absl::StrFormat(" %s", buffer->ToString())); } pieces.push_back("Live out buffers:"); for (const LogicalBuffer* buffer : maybe_live_out_buffers_) { pieces.push_back(absl::StrFormat(" %s", buffer->ToString())); } return absl::StrJoin(pieces, "\n"); } bool BufferLiveness::live_range_strictly_before(const LogicalBuffer& a, const LogicalBuffer& b) const { TF_DCHECK_OK(points_to_analysis_->VerifyBuffer(a)); TF_DCHECK_OK(points_to_analysis_->VerifyBuffer(b)); if (!hlo_ordering_->ExecutesBefore(a.instruction(), b.instruction())) { return false; } for (const BufferAlias& alias : points_to_analysis_->GetBufferAliases(a)) { // Every user of 'a' must be a predecessor of 'b' or 'b' itself. for (auto user : alias.instruction()->users()) { if (points_to_analysis().DoesNotUseOperandBuffer(alias.instruction(), alias.index(), user)) { continue; } if (user != b.instruction() && !hlo_ordering_->ExecutesBefore(user, b.instruction())) { return false; } } // If the root instruction aliases the buffer 'a', the live range of 'a' is // until the end of the computation and can never be strictly before another // buffer defined in the same computation. This is needed to prevent the // root instruction's buffers from being reused by later instructions even // when the root is not the last instruction in the schedule. if (alias.instruction()->parent()->root_instruction() == alias.instruction() && alias.instruction()->parent() == b.instruction()->parent()) { return false; } } // If 'b' is a user of 'a' then the buffers interfere unless 'a.instruction' // and 'b.instruction' emit the same shape/layout, and 'b.instruction' meets // the qualifications specified in CanShareOperandBufferWithUser. for (const BufferAlias& alias : points_to_analysis_->GetBufferAliases(a)) { if (b.instruction()->IsUserOf(alias.instruction()) && !points_to_analysis().CanShareOperandBufferWithUser( alias.instruction(), alias.index(), b.instruction(), b.index())) { return false; } } return true; } namespace { bool IsEntryParameter(const HloInstruction* instruction) { const HloComputation* computation = instruction->parent(); return instruction->opcode() == HloOpcode::kParameter && computation == computation->parent()->entry_computation(); } } // namespace bool BufferLiveness::MayInterfere(const LogicalBuffer& a, const LogicalBuffer& b) const { // Entry parameters live at the entry of the execution, thus always interfere // with all other instructions executing before them in the ordering. const HloInstruction* a_instruction = a.instruction(); const HloInstruction* b_instruction = b.instruction(); if (IsEntryParameter(a_instruction) && hlo_ordering_->ExecutesBefore(b_instruction, a_instruction)) { return true; } if (IsEntryParameter(b_instruction) && hlo_ordering_->ExecutesBefore(a_instruction, b_instruction)) { return true; } // Buffers without disjoint liveness may interfere. return !live_range_strictly_before(a, b) && !live_range_strictly_before(b, a); } bool BufferLiveness::MaybeLiveOut(const LogicalBuffer& buffer) const { // Verify that a buffer is actually defined at the given instruction/index // (eg, its not an alias of another buffer such as occurs with a bitcast). TF_CHECK_OK(points_to_analysis_->VerifyBuffer(buffer)); return maybe_live_out_buffers_.count(&buffer); } } // namespace xla