MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / Run

Method Run

tensorflow/compiler/jit/deadness_analysis.cc:1569–1581  ·  view source on GitHub ↗

static*/

Source from the content-addressed store, hash-verified

1567DeadnessAnalysis::~DeadnessAnalysis() {}
1568
1569/*static*/ Status DeadnessAnalysis::Run(
1570 const Graph& graph, std::unique_ptr<DeadnessAnalysis>* result) {
1571 std::unique_ptr<DeadnessAnalysisImpl> analysis(
1572 new DeadnessAnalysisImpl(&graph));
1573 TF_RETURN_IF_ERROR(analysis->Populate(/*enable_optimistic=*/true));
1574
1575 if (VLOG_IS_ON(2)) {
1576 analysis->Print();
1577 }
1578
1579 *result = std::move(analysis);
1580 return Status::OK();
1581}
1582
1583absl::flat_hash_map<TensorId, string, TensorId::Hasher>
1584DeadnessAnalysisImpl::PredicateMapAsString() const {

Callers 14

ConvertToAsyncOutFunction · 0.45
TEST_FFunction · 0.45
BuildCgmodeOpsFunction · 0.45
PartiallyDeclusterFunction · 0.45
BuildXlaOpsFunction · 0.45
MarkForCompilationMethod · 0.45
ClusterScopingFunction · 0.45
CompileMethod · 0.45
FallbackToTFMethod · 0.45
ComputeMethod · 0.45

Calls 2

PopulateMethod · 0.45
PrintMethod · 0.45

Tested by 11

ConvertToAsyncOutFunction · 0.36
TEST_FFunction · 0.36
BuildCgmodeOpsFunction · 0.36
PartiallyDeclusterFunction · 0.36
BuildXlaOpsFunction · 0.36
MarkForCompilationMethod · 0.36
ClusterScopingFunction · 0.36