HomeSort by relevance Sort by last modified time
    Searched refs:backedges (Results 1 - 3 of 3) sorted by null

  /external/v8/src/compiler/
loop-peeling.cc 21 // | | (backedges)
47 // backedges of the loop correspond to edges from the peeled iteration to
48 // the main loop body, with multiple backedges requiring a merge.
71 // | | | (backedges)
239 int backedges = loop_node->InputCount() - 1; local
240 if (backedges > 1) {
241 // Multiple backedges from original loop, therefore multiple output edges
248 graph_->NewNode(common_->Merge(backedges), backedges, &inputs[0]);
254 for (int i = 0; i < backedges; i++)
    [all...]
scheduler.cc 774 // recording backedges that form cycles. O(|B|).
812 // Otherwise, compute the loop information from the backedges in order
    [all...]
  /external/tensorflow/tensorflow/compiler/jit/
deadness_analysis.cc 90 // predicate to merge nodes with backedges. On the second pass it tries to
91 // pattern matche the predicates for the backedges of these merges and infer an
823 std::vector<string> backedges; local
826 backedges.push_back(absl::StrCat(" ", SummarizeNode(*backedge->src())));
831 FormatNodeForError(*merge), ": \n", absl::StrJoin(backedges, "\n"),
    [all...]

Completed in 600 milliseconds