| 57 | using deadness_analysis_internal::PredicateMapTy; |
| 58 | |
| 59 | Status AnalyzeDeadness(Graph* graph, |
| 60 | std::unique_ptr<DeadnessAnalysis>* result) { |
| 61 | FixupSourceAndSinkEdges(graph); |
| 62 | return DeadnessAnalysis::Run(*graph, result); |
| 63 | } |
| 64 | |
| 65 | ops::Switch CreateSwitch(const Scope& root, const string& prefix) { |
| 66 | Output value = ops::Placeholder(root.WithOpName(prefix + "/value"), DT_FLOAT); |
no test coverage detected