HloLivenessAnalysis marks all live instruction outputs (i.e. tuple elements) for all instructions in an HloModule, propagating live values across computation boundaries. HloModuleDCE sweeps through each instructions dead tuple elements, eliminating dead code (currently removes dead tuple elements from while loops, but could be extended to do the same for call instructions). PiperOrigin-RevId: 197003043
67 lines
2.4 KiB
C++
67 lines
2.4 KiB
C++
/* Copyright 2018 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_HLO_LIVENESS_ANALYSIS_H_
|
|
#define TENSORFLOW_COMPILER_XLA_SERVICE_HLO_LIVENESS_ANALYSIS_H_
|
|
|
|
#include <unordered_map>
|
|
|
|
#include "tensorflow/compiler/xla/service/call_graph.h"
|
|
#include "tensorflow/compiler/xla/service/hlo_instruction.h"
|
|
#include "tensorflow/compiler/xla/service/hlo_module.h"
|
|
#include "tensorflow/compiler/xla/service/hlo_value.h"
|
|
#include "tensorflow/compiler/xla/shape_tree.h"
|
|
#include "tensorflow/compiler/xla/shape_util.h"
|
|
#include "tensorflow/compiler/xla/status.h"
|
|
#include "tensorflow/compiler/xla/statusor.h"
|
|
|
|
namespace xla {
|
|
|
|
// Analysis which identifies all live {HloInstruction, ShapeIndex} pairs in
|
|
// an HLO module.
|
|
//
|
|
// HloLivenessAnalysis marks the shape index of each live output of each
|
|
// instruction in the module, by propagating live shape index information
|
|
// from an instruction to its called computations and operands.
|
|
class HloLivenessAnalysis {
|
|
public:
|
|
// Maps from an HloInstruction to its live/dead output shape indices.
|
|
using HloIndexMap =
|
|
std::unordered_map<const HloInstruction*, ShapeTree<bool>>;
|
|
|
|
// Runs liveness analysis on 'module'. Returns HloLivenessAnalysis object
|
|
// which exports liveness for each {HloInstruction, ShapeIndex} in 'module'.
|
|
static StatusOr<std::unique_ptr<HloLivenessAnalysis>> Run(
|
|
const HloModule& module);
|
|
|
|
// Returns true if output of 'instruction' at 'shape_index' is live.
|
|
// Returns false otherwise.
|
|
bool IsLive(const HloInstruction* instruction,
|
|
const ShapeIndex& shape_index) const;
|
|
|
|
private:
|
|
HloLivenessAnalysis(const HloModule& module);
|
|
|
|
void RunAnalysis();
|
|
|
|
const HloModule& module_;
|
|
std::unique_ptr<CallGraph> call_graph_;
|
|
HloIndexMap live_index_map_;
|
|
};
|
|
|
|
} // namespace xla
|
|
|
|
#endif // TENSORFLOW_COMPILER_XLA_SERVICE_HLO_LIVENESS_ANALYSIS_H_
|